be2net: Remove unnecessary frag list traversing.
authorDavid S. Miller <davem@davemloft.net>
Tue, 9 Jun 2009 08:01:31 +0000 (01:01 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 9 Jun 2009 08:01:31 +0000 (01:01 -0700)
This driver does not indicate support for frag lists.

Furthermore, even if it did, the code is walking the frag
lists incorrectly.  The idiom is:

for (iter = skb_shinfo(skb)->frag_list; iter; iter = iter->next)

but it's doing:

for (iter = skb_shinfo(skb)->frag_list; iter;
     iter = skb_shinfo(iter)->frag_list)

which would never work.  And this proves that this driver never
saw an SKB with active frag lists.

So just remove the code altogether and the driver TX path becomes
much simpler.

Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found