mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
rtl8139: use inline net_crc32() and bitshift instead of compute_mcast_idx()
This makes it much easier to compare the multicast CRC calculation endian and bitshift against the Linux driver implementation. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
084e2b111b
commit
e7a58fc71c
1 changed files with 1 additions and 1 deletions
|
@ -882,7 +882,7 @@ static ssize_t rtl8139_do_receive(NetClientState *nc, const uint8_t *buf, size_t
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mcast_idx = compute_mcast_idx(buf);
|
int mcast_idx = net_crc32(buf, ETH_ALEN) >> 26;
|
||||||
|
|
||||||
if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
|
if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue