Re: [PATCH][LRO] Fix lro_mgr->features checks

2008-01-07 Thread David Miller
From: Brice Goglin <[EMAIL PROTECTED]> Date: Mon, 07 Jan 2008 14:33:32 +0100 > [PATCH][LRO] Fix lro_mgr->features checks > > lro_mgr->features contains a bitmask of LRO_F_* values which are > defined as power of two, not as bit indexes. > They must be checked with x&a

[PATCH][LRO] Fix lro_mgr->features checks

2008-01-07 Thread Brice Goglin
s to 1<features containing LRO_F_EXTRACT_VLAN_ID. Please apply for 2.6.24. Brice [PATCH][LRO] Fix lro_mgr->features checks lro_mgr->features contains a bitmask of LRO_F_* values which are defined as power of two, not as bit indexes. They must be checked with x&LRO_F_FOO, not with te