]> git.droids-corp.org - dpdk.git/commitdiff
drivers: add missing includes
authorFerruh Yigit <ferruh.yigit@intel.com>
Fri, 26 Mar 2021 16:46:15 +0000 (16:46 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 14 Apr 2021 09:23:13 +0000 (11:23 +0200)
These headers are used but not included explicitly, including them.

"arpa/inet.h" is included for 'htons' and friends.
"netinet/in.h" is included for 'IPPROTO_IP'.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Rasesh Mody <rmody@marvell.com>
12 files changed:
drivers/crypto/dpaa_sec/dpaa_sec.c
drivers/event/octeontx/ssovf_worker.h
drivers/net/bnx2x/bnx2x.c
drivers/net/igc/igc_ethdev.h
drivers/net/igc/igc_txrx.c
drivers/net/netvsc/hn_ethdev.c
drivers/net/nfb/nfb_rx.h
drivers/net/pcap/rte_eth_pcap.c
drivers/net/pfe/pfe_hal.c
drivers/net/pfe/pfe_hif.c
drivers/net/sfc/sfc_tso.h
drivers/net/vmxnet3/vmxnet3_ethdev.h

index a4c4b094bbfa1c44783e6f1b65ec9db10ec53618..43363ba6badda739210bd1327ad2b46fb7307c3c 100644 (file)
@@ -20,6 +20,7 @@
 #endif
 #include <rte_cycles.h>
 #include <rte_dev.h>
+#include <rte_ip.h>
 #include <rte_kvargs.h>
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
index 6b2fb9b81741f2c1bcfa8b4fe403c0b0622601fd..4354f007d7e0360c5fe23a4a24364f1620edb7b9 100644 (file)
@@ -2,6 +2,8 @@
  * Copyright(c) 2017 Cavium, Inc
  */
 
+#include <arpa/inet.h>
+
 #include <rte_common.h>
 #include <rte_branch_prediction.h>
 
index 8eb6d609bdc36dfa1cdb3e94c821362c9a69dd46..654878d9dee8233c59bceb7d22d8ccc10fa02e2e 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <arpa/inet.h>
 #include <fcntl.h>
 #include <zlib.h>
 #include <rte_bitops.h>
index 6f658a0e83b312417707a7d5af27fd7b9b8d6950..7b6c209df3b6fdd9abb57a84605ba630cca3b78e 100644 (file)
@@ -6,6 +6,7 @@
 #define _IGC_ETHDEV_H_
 
 #include <rte_ethdev.h>
+#include <rte_flow.h>
 
 #include "base/igc_osdep.h"
 #include "base/igc_hw.h"
index f092709c02356d58895e59937ecc1b8aeb4323b9..8eaed728cc861b52268da41f8881fe564aaf4871 100644 (file)
@@ -3,6 +3,7 @@
  */
 
 #include <rte_config.h>
+#include <rte_flow.h>
 #include <rte_malloc.h>
 #include <ethdev_driver.h>
 #include <rte_net.h>
index 51e950413c882b0572060eebe35c9c15e60f75cb..a7b7f15c16c841349d657af97f3b99306d848b32 100644 (file)
@@ -12,6 +12,7 @@
 #include <dirent.h>
 #include <net/if.h>
 #include <net/if_arp.h>
+#include <netinet/in.h>
 #include <sys/ioctl.h>
 
 #include <rte_ethdev.h>
index 27a2888a75c5c8a7dc8c2ed5c70e3e54f577706b..c9708259af17485a27adfb02b8d316af895d152a 100644 (file)
@@ -11,6 +11,7 @@
 #include <nfb/ndp.h>
 
 #include <rte_mbuf.h>
+#include <rte_mbuf_dyn.h>
 #include <rte_ethdev.h>
 
 #define NFB_TIMESTAMP_FLAG (1 << 0)
index 28a5027315e2f932beb0d701a86cdaae07782311..ef50d088f3548e33694200d627b34cb51572c8ec 100644 (file)
@@ -24,6 +24,7 @@
 #include <rte_kvargs.h>
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
+#include <rte_mbuf_dyn.h>
 #include <rte_bus_vdev.h>
 #include <rte_string_fns.h>
 
index 0d25ec05232b611ae67bd2b285f7730922b60718..41d783dbfff277cf389d2520637890846921248b 100644 (file)
@@ -2,6 +2,8 @@
  * Copyright 2018-2019 NXP
  */
 
+#include <arpa/inet.h>
+
 #include "pfe_logs.h"
 #include "pfe_mod.h"
 
index be5b2ada16d13bf6438eb7a6d3395645d7935681..c4a7154ba732cc19a00f8cf7d7f203c29d8b0249 100644 (file)
@@ -7,6 +7,7 @@
 #include <sys/ioctl.h>
 #include <sys/epoll.h>
 #include <sys/eventfd.h>
+#include <arpa/inet.h>
 
 static int
 pfe_hif_alloc_descr(struct pfe_hif *hif)
index cfc09d1645fc035e51e3dd209653acbe27a1f492..f081e856e1b164b86fcb97f7e0811a0a651ded04 100644 (file)
@@ -10,6 +10,8 @@
 #ifndef _SFC_TSO_H
 #define _SFC_TSO_H
 
+#include <rte_udp.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index 9d00f5d1279de18090692af2f28b914a3d057066..f93bb474b2cc2c1f93468af8a0e8e8fdda2f7e79 100644 (file)
@@ -6,6 +6,7 @@
 #define _VMXNET3_ETHDEV_H_
 
 #include <rte_io.h>
+#include <rte_mbuf_dyn.h>
 
 #define VMXNET3_MAX_MAC_ADDRS 1