summaryrefslogtreecommitdiffstats
path: root/recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2018-06-05 09:47:35 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-06-05 12:01:05 -0400
commitd4c5cd1d939ac9bc8f4e2065e5afa83b1fa00418 (patch)
tree00a71160f4ee549b5387c9e7d545e1b9edccbe1d /recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch
parent343b40ba0d44caeb22013a1586ae2159e415bd4c (diff)
downloadmeta-virtualization-d4c5cd1d939ac9bc8f4e2065e5afa83b1fa00418.tar.gz
openvswitch: remove unused patches
commit 1fd1ff372014 [openvswitch: uprev to v2.9.2] left a bunch of unused patches in place. Remove unreferenced patches as they are no longer needed. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch')
-rw-r--r--recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch b/recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch
deleted file mode 100644
index f1f9befe..00000000
--- a/recipes-networking/openvswitch/openvswitch-git/0001-use-the-linux-if_packet.h-Interface-directly.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 28b2d17de9414161d5edd67766bd4b452cd809ef Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 20 Mar 2017 12:12:51 -0700
4Subject: [PATCH] use the linux if_packet.h Interface directly
5
6Helps compiling with musl
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9
10---
11 lib/netdev-linux.c | 3 +--
12 1 file changed, 1 insertion(+), 2 deletions(-)
13
14diff --git a/lib/netdev-linux.c b/lib/netdev-linux.c
15index fccf88f..b703156 100644
16--- a/lib/netdev-linux.c
17+++ b/lib/netdev-linux.c
18@@ -33,14 +33,13 @@
19 #include <linux/pkt_sched.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/sockios.h>
22+#include <linux/if_packet.h>
23 #include <sys/types.h>
24 #include <sys/ioctl.h>
25 #include <sys/socket.h>
26 #include <sys/utsname.h>
27-#include <netpacket/packet.h>
28 #include <net/if.h>
29 #include <net/if_arp.h>
30-#include <net/if_packet.h>
31 #include <net/route.h>
32 #include <netinet/in.h>
33 #include <poll.h>