summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/hw_e1000_c.patch
diff options
context:
space:
mode:
authorJuergen Lock <nox@FreeBSD.org>2012-02-17 22:31:17 +0000
committerJuergen Lock <nox@FreeBSD.org>2012-02-17 22:31:17 +0000
commit743f1c15fc9f1c7ea4748451fb7a0c731c0dd22a (patch)
tree08d1133d67fb4af99c7ef3904d236dbdaed57c47 /emulators/qemu-devel/files/hw_e1000_c.patch
parent- Update to 1.6.3 (diff)
Update to 1.0.1 - announce message is here:
http://lists.nongnu.org/archive/html/qemu-devel/2012-02/msg02458.html
Diffstat (limited to 'emulators/qemu-devel/files/hw_e1000_c.patch')
-rw-r--r--emulators/qemu-devel/files/hw_e1000_c.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/qemu-devel/files/hw_e1000_c.patch b/emulators/qemu-devel/files/hw_e1000_c.patch
new file mode 100644
index 000000000000..15b2494f0d40
--- /dev/null
+++ b/emulators/qemu-devel/files/hw_e1000_c.patch
@@ -0,0 +1,11 @@
+--- qemu-0.14.1/hw/e1000.c.orig Thu Jun 23 17:01:19 2011
++++ qemu-0.14.1/hw/e1000.c Thu Jun 23 17:02:30 2011
+@@ -573,7 +573,7 @@
+ if (rctl & E1000_RCTL_UPE) // promiscuous
+ return 1;
+
+- if ((buf[0] & 1) && (rctl & E1000_RCTL_MPE)) // promiscuous mcast
++ if (buf[0] & 1) // promiscuous mcast
+ return 1;
+
+ if ((rctl & E1000_RCTL_BAM) && !memcmp(buf, bcast, sizeof bcast))