|
|
0a122b |
From d16828fb1034ceb05e3e690065aa1ddc2088d53c Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Dmitry Fleytman <dfleytma@redhat.com>
|
|
|
0a122b |
Date: Tue, 19 Nov 2013 13:18:27 +0100
|
|
|
0a122b |
Subject: [PATCH 03/14] virtio-net: broken RX filtering logic fixed
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Dmitry Fleytman <dfleytma@redhat.com>
|
|
|
0a122b |
Message-id: <1384867107-25295-1-git-send-email-dfleytma@redhat.com>
|
|
|
0a122b |
Patchwork-id: 55756
|
|
|
0a122b |
O-Subject: [RHEL-7 qemu-kvm PATCH] virtio-net: broken RX filtering logic fixed
|
|
|
0a122b |
Bugzilla: 1029370
|
|
|
0a122b |
RH-Acked-by: Yan Vugenfirer <yvugenfi@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Vlad Yasevich <vyasevic@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Amos Kong <akong@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1029370
|
|
|
0a122b |
Brew: https://brewweb.devel.redhat.com/taskinfo?taskID=6606668
|
|
|
0a122b |
Upstream-status: cc386e96727442f5b67052d4e0a602f6f652ffe6
|
|
|
0a122b |
|
|
|
0a122b |
Upon processing of VIRTIO_NET_CTRL_MAC_TABLE_SET command
|
|
|
0a122b |
multicast list overwrites unicast list in mac_table.
|
|
|
0a122b |
This leads to broken logic for both unicast and multicast RX filtering.
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Dmitry Fleytman <dfleytma@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/net/virtio-net.c | 3 ++-
|
|
|
0a122b |
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/net/virtio-net.c | 3 ++-
|
|
|
0a122b |
1 files changed, 2 insertions(+), 1 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
|
|
|
0a122b |
index f889841..3bc1eed 100644
|
|
|
0a122b |
--- a/hw/net/virtio-net.c
|
|
|
0a122b |
+++ b/hw/net/virtio-net.c
|
|
|
0a122b |
@@ -595,7 +595,8 @@ static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
|
|
|
0a122b |
}
|
|
|
0a122b |
|
|
|
0a122b |
if (n->mac_table.in_use + mac_data.entries <= MAC_TABLE_ENTRIES) {
|
|
|
0a122b |
- s = iov_to_buf(iov, iov_cnt, 0, n->mac_table.macs,
|
|
|
0a122b |
+ s = iov_to_buf(iov, iov_cnt, 0,
|
|
|
0a122b |
+ &n->mac_table.macs[n->mac_table.in_use * ETH_ALEN],
|
|
|
0a122b |
mac_data.entries * ETH_ALEN);
|
|
|
0a122b |
if (s != mac_data.entries * ETH_ALEN) {
|
|
|
0a122b |
goto error;
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|