Re: [Qemu-devel] [PATCH v5 17/24] util: add linux bit ordering reversal functions

2013-02-28 Thread Kuo-Jung Su
2013/3/1 Peter Maydell : > On 27 February 2013 07:15, Kuo-Jung Su wrote: >> From: Kuo-Jung Su >> >> Some ethernet mac relies on the bit ordering reversal functions >> to performance the multicast address hash code calculation. >> So I've ported the bitrev.[ch] from linux kernel into QEMU. >> >> S

Re: [Qemu-devel] [PATCH v5 17/24] util: add linux bit ordering reversal functions

2013-02-28 Thread Peter Maydell
On 27 February 2013 07:15, Kuo-Jung Su wrote: > From: Kuo-Jung Su > > Some ethernet mac relies on the bit ordering reversal functions > to performance the multicast address hash code calculation. > So I've ported the bitrev.[ch] from linux kernel into QEMU. > > Signed-off-by: Kuo-Jung Su > --- >

[Qemu-devel] [PATCH v5 17/24] util: add linux bit ordering reversal functions

2013-02-26 Thread Kuo-Jung Su
From: Kuo-Jung Su Some ethernet mac relies on the bit ordering reversal functions to performance the multicast address hash code calculation. So I've ported the bitrev.[ch] from linux kernel into QEMU. Signed-off-by: Kuo-Jung Su --- include/qemu/bitrev.h | 25 + util/Make