1. 06 8月, 2009 1 次提交
  2. 02 8月, 2009 4 次提交
  3. 24 7月, 2009 1 次提交
  4. 23 7月, 2009 1 次提交
  5. 04 7月, 2009 1 次提交
  6. 29 6月, 2009 1 次提交
  7. 19 6月, 2009 3 次提交
  8. 11 6月, 2009 5 次提交
  9. 09 6月, 2009 1 次提交
    • D
      be2net: Remove unnecessary frag list traversing. · ebc8d2ab
      David S. Miller 提交于
      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: NDavid S. Miller <davem@davemloft.net>
      ebc8d2ab
  10. 29 5月, 2009 1 次提交
  11. 19 5月, 2009 1 次提交
  12. 14 4月, 2009 2 次提交
  13. 27 3月, 2009 1 次提交
  14. 25 3月, 2009 1 次提交
  15. 20 3月, 2009 2 次提交
  16. 12 3月, 2009 1 次提交