[E1000-devel] [PATCH 2/2 v2] net/e1000: look in the page and not in skb-data for the last byte

2012-05-11 Thread Sebastian Andrzej Siewior
The code seems to want to look at the last byte where the HW puts some information. Since the skb-data area is never seen by the HW I guess it does not work as expected. We pass the page address to the HW so I *think* in order to get to the last byte where the information might be one should use

Re: [E1000-devel] [PATCH 2/2 v2] net/e1000: look in the page and not in skb-data for the last byte

2012-05-11 Thread Jeff Kirsher
On Fri, 2012-05-11 at 08:45 +0200, Sebastian Andrzej Siewior wrote: The code seems to want to look at the last byte where the HW puts some information. Since the skb-data area is never seen by the HW I guess it does not work as expected. We pass the page address to the HW so I *think* in