summaryrefslogtreecommitdiff
path: root/recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch')
-rw-r--r--recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch b/recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch
deleted file mode 100644
index 6017df0f6d..0000000000
--- a/recipes/qemu/qemu-0.9.1/22_net_tuntap_stall.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-#DPATCHLEVEL=0
----
-# vl.c | 2 +-
-# 1 file changed, 1 insertion(+), 1 deletion(-)
-#
-Index: vl.c
-===================================================================
---- vl.c.orig 2007-12-03 23:47:36.000000000 +0000
-+++ vl.c 2007-12-03 23:47:48.000000000 +0000
-@@ -4023,7 +4023,7 @@ static int tap_open(char *ifname, int if
- return -1;
- }
- memset(&ifr, 0, sizeof(ifr));
-- ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
-+ ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE;
- if (ifname[0] != '\0')
- pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
- else