* [dpdk-dev] [PATCH v1] net/avf: fix DEBUG_DUMP_DESC causing build issue
@ 2018-10-14 2:34 Haiyue Wang
2018-10-15 9:47 ` Ferruh Yigit
0 siblings, 1 reply; 2+ messages in thread
From: Haiyue Wang @ 2018-10-14 2:34 UTC (permalink / raw)
To: dev, bruce.richardson, ferruh.yigit; +Cc: stable, Haiyue Wang
Add the missed 'volatile' keyword to avoid the warning for type
mismatch, which will be treated as compiler error if WERROR_FLAGS
is enabled.
Fixes: bfd38e4d708b ("net/avf: fix missing compiler error flags")
CC: stable@dpdk.org
Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
drivers/net/avf/avf_rxtx.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/net/avf/avf_rxtx.h b/drivers/net/avf/avf_rxtx.h
index c4120f8..898d2f3 100644
--- a/drivers/net/avf/avf_rxtx.h
+++ b/drivers/net/avf/avf_rxtx.h
@@ -201,17 +201,17 @@ uint16_t avf_xmit_fixed_burst_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
static inline
void avf_dump_rx_descriptor(struct avf_rx_queue *rxq,
- const void *desc,
+ const volatile void *desc,
uint16_t rx_id)
{
#ifdef RTE_LIBRTE_AVF_16BYTE_RX_DESC
- const union avf_16byte_rx_desc *rx_desc = desc;
+ const volatile union avf_16byte_rx_desc *rx_desc = desc;
printf("Queue %d Rx_desc %d: QW0: 0x%016"PRIx64" QW1: 0x%016"PRIx64"\n",
rxq->queue_id, rx_id, rx_desc->read.pkt_addr,
rx_desc->read.hdr_addr);
#else
- const union avf_32byte_rx_desc *rx_desc = desc;
+ const volatile union avf_32byte_rx_desc *rx_desc = desc;
printf("Queue %d Rx_desc %d: QW0: 0x%016"PRIx64" QW1: 0x%016"PRIx64
" QW2: 0x%016"PRIx64" QW3: 0x%016"PRIx64"\n", rxq->queue_id,
@@ -225,10 +225,10 @@ void avf_dump_rx_descriptor(struct avf_rx_queue *rxq,
*/
static inline
void avf_dump_tx_descriptor(const struct avf_tx_queue *txq,
- const void *desc, uint16_t tx_id)
+ const volatile void *desc, uint16_t tx_id)
{
const char *name;
- const struct avf_tx_desc *tx_desc = desc;
+ const volatile struct avf_tx_desc *tx_desc = desc;
enum avf_tx_desc_dtype_value type;
type = (enum avf_tx_desc_dtype_value)rte_le_to_cpu_64(
--
1.8.3.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH v1] net/avf: fix DEBUG_DUMP_DESC causing build issue
2018-10-14 2:34 [dpdk-dev] [PATCH v1] net/avf: fix DEBUG_DUMP_DESC causing build issue Haiyue Wang
@ 2018-10-15 9:47 ` Ferruh Yigit
0 siblings, 0 replies; 2+ messages in thread
From: Ferruh Yigit @ 2018-10-15 9:47 UTC (permalink / raw)
To: Haiyue Wang, dev, bruce.richardson; +Cc: stable
On 10/14/2018 3:34 AM, Haiyue Wang wrote:
> Add the missed 'volatile' keyword to avoid the warning for type
> mismatch, which will be treated as compiler error if WERROR_FLAGS
> is enabled.
>
> Fixes: bfd38e4d708b ("net/avf: fix missing compiler error flags")
>
> CC: stable@dpdk.org
>
> Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
Applied to dpdk-next-net/master, thanks.
(To prevent issue like this in the future, it is best to convert this Makefile
enabled/disable flag to config file, or perhaps tie it to already existing
DEBUG_TX / DEBUG_RX config options.)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-10-15 9:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-14 2:34 [dpdk-dev] [PATCH v1] net/avf: fix DEBUG_DUMP_DESC causing build issue Haiyue Wang
2018-10-15 9:47 ` Ferruh Yigit
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).