]> git.droids-corp.org - dpdk.git/commitdiff
net/avf: fix missing compiler error flags
authorBruce Richardson <bruce.richardson@intel.com>
Wed, 19 Sep 2018 10:04:16 +0000 (11:04 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 27 Sep 2018 23:41:02 +0000 (01:41 +0200)
The AVF driver was missing $(WERROR_FLAGS) in it's cflags, which means
that a number of compilation errors were getting missed. This patch adds
in the flag and fixes most of the errors, just disabling the
strict-aliasing ones.

Fixes: 22b123a36d07 ("net/avf: initialize PMD")
Fixes: 69dd4c3d0898 ("net/avf: enable queue and device")
Fixes: a2b29a7733ef ("net/avf: enable basic Rx Tx")
Fixes: 319c421f3890 ("net/avf: enable SSE Rx Tx")
CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
drivers/net/avf/Makefile
drivers/net/avf/avf_ethdev.c
drivers/net/avf/avf_rxtx.h
drivers/net/avf/avf_rxtx_vec_sse.c

index 3f815bbc43dcef4fccf1ced0620a9ed85d56eff6..0a142c1045a65ebd810cf2e1ba95d256404a0358 100644 (file)
@@ -8,7 +8,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 #
 LIB = librte_pmd_avf.a
 
-CFLAGS += -O3
+CFLAGS += -O3 $(WERROR_FLAGS) -Wno-strict-aliasing
 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs -lrte_hash
 LDLIBS += -lrte_bus_pci
index 6b6ff7d55760d4a817632f73058e3e3bd5217479..54949847782fcec0518f3de2b98fa35fd1d704a3 100644 (file)
@@ -559,7 +559,7 @@ avf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
 }
 
 static const uint32_t *
-avf_dev_supported_ptypes_get(struct rte_eth_dev *dev)
+avf_dev_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
 {
        static const uint32_t ptypes[] = {
                RTE_PTYPE_L2_ETHER,
index 297d0776d49d2081cf2171a84cbda6c08be783b8..c4120f8a4e539944c7f2fad045e4ed8dcd39ddf5 100644 (file)
@@ -227,7 +227,7 @@ static inline
 void avf_dump_tx_descriptor(const struct avf_tx_queue *txq,
                            const void *desc, uint16_t tx_id)
 {
-       char *name;
+       const char *name;
        const struct avf_tx_desc *tx_desc = desc;
        enum avf_tx_desc_dtype_value type;
 
index 8275100f3702a7f809529bd32249600675d1035d..343a6aac3a8bf65ca371aa226e43219d3cc7ca51 100644 (file)
@@ -621,7 +621,7 @@ avf_xmit_fixed_burst_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
        return nb_pkts;
 }
 
-void __attribute__((cold))
+static void __attribute__((cold))
 avf_rx_queue_release_mbufs_sse(struct avf_rx_queue *rxq)
 {
        _avf_rx_queue_release_mbufs_vec(rxq);