* [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error
@ 2017-04-06 13:59 Ed Czeck
2017-04-06 14:18 ` Olivier MATZ
0 siblings, 1 reply; 5+ messages in thread
From: Ed Czeck @ 2017-04-06 13:59 UTC (permalink / raw)
To: dev; +Cc: olivier.matz, bruce.richardson, Ed Czeck
build error:
include/rte_ring.h:459:22: error: invalid conversion from ‘void*’
to ‘void**’ [-fpermissive]
ENQUEUE_PTRS(r, &r[1], prod_head, obj_table, n, void *);
Implicit casts of void* to void** are considered warnings in some
compilers. E.g. g++ version 5.8. Cast directly to object types
Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
---
lib/librte_ring/rte_ring.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/librte_ring/rte_ring.h b/lib/librte_ring/rte_ring.h
index 6642e18..7648cd8 100644
--- a/lib/librte_ring/rte_ring.h
+++ b/lib/librte_ring/rte_ring.h
@@ -290,7 +290,7 @@ void rte_ring_dump(FILE *f, const struct rte_ring *r);
unsigned int i; \
const uint32_t size = (r)->size; \
uint32_t idx = prod_head & (r)->mask; \
- obj_type *ring = (void *)ring_start; \
+ obj_type *ring = (obj_type *)ring_start; \
if (likely(idx + n < size)) { \
for (i = 0; i < (n & ((~(unsigned)0x3))); i+=4, idx+=4) { \
ring[idx] = obj_table[i]; \
@@ -321,7 +321,7 @@ void rte_ring_dump(FILE *f, const struct rte_ring *r);
unsigned int i; \
uint32_t idx = cons_head & (r)->mask; \
const uint32_t size = (r)->size; \
- obj_type *ring = (void *)ring_start; \
+ obj_type *ring = (obj_type *)ring_start; \
if (likely(idx + n < size)) { \
for (i = 0; i < (n & (~(unsigned)0x3)); i+=4, idx+=4) {\
obj_table[i] = ring[idx]; \
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error
2017-04-06 13:59 [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error Ed Czeck
@ 2017-04-06 14:18 ` Olivier MATZ
2017-04-06 14:25 ` Thomas Monjalon
2017-04-06 15:40 ` Thomas Monjalon
0 siblings, 2 replies; 5+ messages in thread
From: Olivier MATZ @ 2017-04-06 14:18 UTC (permalink / raw)
To: Ed Czeck; +Cc: dev, bruce.richardson
On Thu, 6 Apr 2017 09:59:47 -0400, Ed Czeck <ed.czeck@atomicrules.com> wrote:
> build error:
> include/rte_ring.h:459:22: error: invalid conversion from ‘void*’
> to ‘void**’ [-fpermissive]
> ENQUEUE_PTRS(r, &r[1], prod_head, obj_table, n, void *);
>
> Implicit casts of void* to void** are considered warnings in some
> compilers. E.g. g++ version 5.8. Cast directly to object types
>
> Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error
2017-04-06 14:18 ` Olivier MATZ
@ 2017-04-06 14:25 ` Thomas Monjalon
2017-04-06 15:16 ` Ed Czeck
2017-04-06 15:40 ` Thomas Monjalon
1 sibling, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2017-04-06 14:25 UTC (permalink / raw)
To: Olivier MATZ, Ed Czeck; +Cc: dev, bruce.richardson
2017-04-06 16:18, Olivier MATZ:
> On Thu, 6 Apr 2017 09:59:47 -0400, Ed Czeck <ed.czeck@atomicrules.com> wrote:
> > build error:
> > include/rte_ring.h:459:22: error: invalid conversion from ‘void*’
> > to ‘void**’ [-fpermissive]
> > ENQUEUE_PTRS(r, &r[1], prod_head, obj_table, n, void *);
> >
> > Implicit casts of void* to void** are considered warnings in some
> > compilers. E.g. g++ version 5.8. Cast directly to object types
> >
> > Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>
Does this error happen only with C++?
Please could you give a Fixes line?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error
2017-04-06 14:25 ` Thomas Monjalon
@ 2017-04-06 15:16 ` Ed Czeck
0 siblings, 0 replies; 5+ messages in thread
From: Ed Czeck @ 2017-04-06 15:16 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: Olivier MATZ, dev, bruce.richardson
This error has been observed with g++ 4.8 and g++ 5.4
Fixes: a6619414 ("ring: make struct and macros type agnostic")
On Thu, Apr 6, 2017 at 10:25 AM, Thomas Monjalon <thomas.monjalon@6wind.com>
wrote:
>
> Does this error happen only with C++?
>
> Please could you give a Fixes line?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error
2017-04-06 14:18 ` Olivier MATZ
2017-04-06 14:25 ` Thomas Monjalon
@ 2017-04-06 15:40 ` Thomas Monjalon
1 sibling, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2017-04-06 15:40 UTC (permalink / raw)
To: Ed Czeck; +Cc: dev, Olivier MATZ, bruce.richardson
2017-04-06 16:18, Olivier MATZ:
> On Thu, 6 Apr 2017 09:59:47 -0400, Ed Czeck <ed.czeck@atomicrules.com> wrote:
> > build error:
> > include/rte_ring.h:459:22: error: invalid conversion from ‘void*’
> > to ‘void**’ [-fpermissive]
> > ENQUEUE_PTRS(r, &r[1], prod_head, obj_table, n, void *);
> >
> > Implicit casts of void* to void** are considered warnings in some
> > compilers. E.g. g++ version 5.8. Cast directly to object types
> >
> > Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-04-06 15:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06 13:59 [dpdk-dev] [PATCH] ring: use direct cast to objtype fixes build error Ed Czeck
2017-04-06 14:18 ` Olivier MATZ
2017-04-06 14:25 ` Thomas Monjalon
2017-04-06 15:16 ` Ed Czeck
2017-04-06 15:40 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).