From: "Cédric Le Goater" <clg@kaod.org>
To: Jason Wang <jasowang@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Cédric Le Goater" <clg@kaod.org>
Subject: [Qemu-devel] [PATCH v2 3/4] ftgmac100: fix multicast hash routine
Date: Wed, 30 May 2018 08:17:10 +0200 [thread overview]
Message-ID: <20180530061711.23673-4-clg@kaod.org> (raw)
In-Reply-To: <20180530061711.23673-1-clg@kaod.org>
Based on the multicast hash calculation of the FTGMAC100 Linux driver.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
hw/net/ftgmac100.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/net/ftgmac100.c b/hw/net/ftgmac100.c
index abf80655f28f..8a7f274dc118 100644
--- a/hw/net/ftgmac100.c
+++ b/hw/net/ftgmac100.c
@@ -776,8 +776,8 @@ static int ftgmac100_filter(FTGMAC100State *s, const uint8_t *buf, size_t len)
return 0;
}
- /* TODO: this does not seem to work for ftgmac100 */
- mcast_idx = net_crc32(buf, ETH_ALEN) >> 26;
+ mcast_idx = net_crc32_le(buf, ETH_ALEN);
+ mcast_idx = (~(mcast_idx >> 2)) & 0x3f;
if (!(s->math[mcast_idx / 32] & (1 << (mcast_idx % 32)))) {
return 0;
}
--
2.13.6
next prev parent reply other threads:[~2018-05-30 6:17 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-30 6:17 [Qemu-devel] [PATCH v2 0/4] net: ftgmac100 enhancements Cédric Le Goater
2018-05-30 6:17 ` [Qemu-devel] [PATCH v2 1/4] ftgmac100: compute maximum frame size depending on the protocol Cédric Le Goater
2018-05-30 6:17 ` [Qemu-devel] [PATCH v2 2/4] ftgmac100: add IEEE 802.1Q VLAN support Cédric Le Goater
2018-06-07 12:41 ` Peter Maydell
2018-06-07 13:30 ` Cédric Le Goater
2018-05-30 6:17 ` Cédric Le Goater [this message]
2018-05-30 6:17 ` [Qemu-devel] [PATCH v2 4/4] ftgmac100: remove check on runt messages Cédric Le Goater
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180530061711.23673-4-clg@kaod.org \
--to=clg@kaod.org \
--cc=f4bug@amsat.org \
--cc=jasowang@redhat.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).