aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-03-30 12:39:45 -0700
committerJoe MacDonald <joe_macdonald@mentor.com>2017-04-25 15:55:36 -0400
commita8d26915e8776eb94adeb87de1d23a148cdb2265 (patch)
tree0abf2ff856b8d7ab9e898d5e54c51b39531fe07b /meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch
parent9e69cd9c18af17f1b7e478f46f225ca863f03062 (diff)
downloadmeta-openembedded-a8d26915e8776eb94adeb87de1d23a148cdb2265.tar.gz
arptables: Upgrade to 0.0.4
Switch the SRC_URI to git based fetcher Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch')
-rw-r--r--meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch b/meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch
new file mode 100644
index 0000000000..0875344feb
--- /dev/null
+++ b/meta-networking/recipes-support/arptables/arptables/arptables-arpt-get-target-fix.patch
@@ -0,0 +1,30 @@
+arptables: fix the redefinition of 'arpt_get_target'
+
+Upstream-Status: Pending
+
+This function is already defined as a static inline function in
+include/linux/netfilter_arp/arp_tables.h, once GCC uses -O0, the
+inline will not work, and the redefinition error will happen
+
+Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
+Signed-off-by: Roy.Li <rongqing.li@windriver.com>
+
+diff --git a/libarptc/libarptc_incl.c b/libarptc/libarptc_incl.c
+index 35736db..addd3f9 100644
+--- a/libarptc/libarptc_incl.c
++++ b/libarptc/libarptc_incl.c
+@@ -11,14 +11,6 @@
+ /* (C)1999 Paul ``Rusty'' Russell - Placed under the GNU GPL (See
+ COPYING for details). */
+
+-#ifndef __OPTIMIZE__
+-STRUCT_ENTRY_TARGET *
+-GET_TARGET(STRUCT_ENTRY *e)
+-{
+- return (void *)e + e->target_offset;
+-}
+-#endif
+-
+ static int sockfd = -1;
+ static void *arptc_fn = NULL;
+