]> git.droids-corp.org - dpdk.git/commitdiff
pcap: revert build patches
authorDavid Marchand <david.marchand@6wind.com>
Thu, 6 Mar 2014 10:11:56 +0000 (11:11 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 19 Mar 2014 13:33:52 +0000 (14:33 +0100)
This reverts commits
a0cdfcf9 (use pcap-config to guess compilation flags),
ef5b2363 (fix build with empty LIBPCAP_CFLAGS) and
60191b89 (fix build when pcap_sendpacket is unavailable).

These patches are creating more problems than solving the initial one
(which was a build error with too old pcap libraries).
Since old pcap libraries are not that common, just revert them.

Reported-by: Meir Tseitlin <mirots@gmail.com>
Reported-by: Mats Liljegren <mats.liljegren@enea.com>
Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
app/test-pmd/Makefile
doc/build-sdk-quick.txt
lib/librte_pmd_pcap/rte_eth_pcap.c
lib/librte_pmd_pcap/rte_eth_pcap.h
mk/rte.app.mk
mk/rte.sdkbuild.mk
mk/target/generic/rte.vars.mk

index f0d4b4de4faf57f9c3863e18494a403356ca0167..bec83ebed23b4c4f337272d0c8a59179c2c6c33a 100644 (file)
@@ -39,6 +39,10 @@ APP = testpmd
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
+ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
+LDFLAGS += -lpcap
+endif
+
 #
 # all source are stored in SRCS-y
 #
index bf7c350fcc6827d258277c4f4da5c1556b5c7e59..8989a32a60adb606e753fca530b69a50fa47a982 100644 (file)
@@ -11,8 +11,6 @@ Build variables
        EXTRA_CPPFLAGS   preprocessor options
        EXTRA_CFLAGS     compiler options
        EXTRA_LDFLAGS    linker options
-       LIBPCAP_CFLAGS   libpcap compiler options
-       LIBPCAP_LDFLAGS  libpcap linker options
        RTE_KERNELDIR    linux headers path
        CROSS     toolchain prefix
        V         verbose
index fbafd19668bb4afccf01719f4c60c5105023c368..fe94a79c50e049b865a39ffa56c007ad1504719f 100644 (file)
@@ -217,7 +217,6 @@ eth_pcap_tx_dumper(void *queue,
        return num_tx;
 }
 
-#ifdef PCAP_CAN_SEND
 /*
  * Callback to handle sending packets through a real NIC.
  */
@@ -248,17 +247,6 @@ eth_pcap_tx(void *queue,
        tx_queue->err_pkts += nb_pkts - num_tx;
        return num_tx;
 }
-#else
-static uint16_t
-eth_pcap_tx(__rte_unused void *queue,
-               __rte_unused struct rte_mbuf **bufs,
-               __rte_unused uint16_t nb_pkts)
-{
-       RTE_LOG(ERR, PMD, "pcap library cannot send packets, please rebuild "
-                         "with a more up to date libpcap\n");
-       return -1;
-}
-#endif
 
 static int
 eth_dev_start(struct rte_eth_dev *dev)
index 344b78d1a5143b6bad11e8347b323d8a837227ab..79373c0493b39bd6b1659897ad624dabea2549b9 100644 (file)
@@ -39,12 +39,6 @@ extern "C" {
 #endif
 #include <pcap.h>
 
-#ifdef pcap_sendpacket
-#define PCAP_CAN_SEND
-#else
-#undef PCAP_CAN_SEND
-#endif
-
 #define RTE_ETH_PCAP_PARAM_NAME "eth_pcap"
 
 /**
index d90a0b0eafe1f308bf46e5eb5f092b121333acd0..ec8e24eebbc69c7b637d6ab6ea9d3e7df06c480a 100644 (file)
@@ -170,10 +170,7 @@ LDLIBS += -lrte_cmdline
 endif
 
 ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LDLIBS += -lrte_pmd_pcap
-LIBPCAP_LDFLAGS ?= $(shell pcap-config --libs)
-$(if $(LIBPCAP_LDFLAGS),,$(error LIBPCAP_LDFLAGS is undefined))
-LDLIBS += $(LIBPCAP_LDFLAGS)
+LDLIBS += -lrte_pmd_pcap -lpcap
 endif
 
 LDLIBS += $(EXECENV_LDLIBS)
index 112c288f9b99beb4875de341f50c8c9292f99423..2975ee413b894392e7288de51309d2d5fe34d1ad 100644 (file)
@@ -40,13 +40,6 @@ else
   include $(RTE_SDK)/mk/rte.vars.mk
 endif
 
-ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LIBPCAP_CFLAGS ?= $(shell pcap-config --cflags)
-EXTERNAL_LIB_CFLAGS += $(LIBPCAP_CFLAGS)
-endif
-
-export EXTERNAL_LIB_CFLAGS
-
 #
 # include .depdirs and define rules to order priorities between build
 # of directories.
index a163272949251e38913b060395c829885b525a34..796cca7da28a73e1c7e297b8be58d46ebc3397bd 100644 (file)
@@ -108,7 +108,7 @@ include $(RTE_SDK)/mk/rte.cpuflags.mk
 
 # merge all CFLAGS
 CFLAGS := $(CPU_CFLAGS) $(EXECENV_CFLAGS) $(TOOLCHAIN_CFLAGS) $(MACHINE_CFLAGS)
-CFLAGS += $(TARGET_CFLAGS) $(EXTERNAL_LIB_CFLAGS)
+CFLAGS += $(TARGET_CFLAGS)
 
 # merge all LDFLAGS
 LDFLAGS := $(CPU_LDFLAGS) $(EXECENV_LDFLAGS) $(TOOLCHAIN_LDFLAGS) $(MACHINE_LDFLAGS)