1. 06 1月, 2012 1 次提交
  2. 07 12月, 2011 1 次提交
  3. 24 11月, 2011 1 次提交
  4. 23 11月, 2011 1 次提交
  5. 29 8月, 2011 2 次提交
  6. 11 8月, 2011 1 次提交
    • J
      broadcom: Move the Broadcom drivers · adfc5217
      Jeff Kirsher 提交于
      Moves the drivers for Broadcom devices into
      drivers/net/ethernet/broadcom/ and the necessary Kconfig and Makefile
      changes.
      
      CC: Eilon Greenstein <eilong@broadcom.com>
      CC: Michael Chan <mchan@broadcom.com>
      CC: Matt Carlson <mcarlson@broadcom.com>
      CC: Gary Zambrano <zambrano@broadcom.com>
      CC: "Maciej W. Rozycki" <macro@linux-mips.org>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      adfc5217
  7. 22 7月, 2011 3 次提交
  8. 14 7月, 2011 4 次提交
  9. 22 6月, 2011 1 次提交
  10. 15 6月, 2011 2 次提交
  11. 09 6月, 2011 5 次提交
  12. 23 5月, 2011 2 次提交
    • P
      Add appropriate <linux/prefetch.h> include for prefetch users · 70c71606
      Paul Gortmaker 提交于
      After discovering that wide use of prefetch on modern CPUs
      could be a net loss instead of a win, net drivers which were
      relying on the implicit inclusion of prefetch.h via the list
      headers showed up in the resulting cleanup fallout.  Give
      them an explicit include via the following $0.02 script.
      
       =========================================
       #!/bin/bash
       MANUAL=""
       for i in `git grep -l 'prefetch(.*)' .` ; do
       	grep -q '<linux/prefetch.h>' $i
       	if [ $? = 0 ] ; then
       		continue
       	fi
      
       	(	echo '?^#include <linux/?a'
       		echo '#include <linux/prefetch.h>'
       		echo .
       		echo w
       		echo q
       	) | ed -s $i > /dev/null 2>&1
       	if [ $? != 0 ]; then
       		echo $i needs manual fixup
       		MANUAL="$i $MANUAL"
       	fi
       done
       echo ------------------- 8\<----------------------
       echo vi $MANUAL
       =========================================
      Signed-off-by: NPaul <paul.gortmaker@windriver.com>
      [ Fixed up some incorrect #include placements, and added some
        non-network drivers and the fib_trie.c case    - Linus ]
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      70c71606
    • P
      drivers/net: add prefetch header for prefetch users · c0cba59e
      Paul Gortmaker 提交于
      After discovering that wide use of prefetch on modern CPUs
      could be a net loss instead of a win, net drivers which were
      relying on the implicit inclusion of prefetch.h via the list
      headers showed up in the resulting cleanup fallout.  Give
      them an explicit include via the following $0.02 script.
      
       =========================================
       #!/bin/bash
       MANUAL=""
       for i in `git grep -l 'prefetch(.*)' .` ; do
       	grep -q '<linux/prefetch.h>' $i
       	if [ $? = 0 ] ; then
       		continue
       	fi
      
       	(	echo '?^#include <linux/?a'
       		echo '#include <linux/prefetch.h>'
       		echo .
       		echo w
       		echo q
       	) | ed -s $i > /dev/null 2>&1
       	if [ $? != 0 ]; then
       		echo $i needs manual fixup
       		MANUAL="$i $MANUAL"
       	fi
       done
       echo ------------------- 8\<----------------------
       echo vi $MANUAL
       =========================================
      Signed-off-by: NPaul <paul.gortmaker@windriver.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c0cba59e
  13. 09 4月, 2011 1 次提交
    • M
      cnic: Fix rtnl deadlock · 93ae6534
      Michael Chan 提交于
      When cnic_stop_hw() -> cnic_cm_stop_bnx2x_hw() is called under rtnl_lock()
      from NETDEV_DOWN event, it waits for cnic_delete_task() to complete.
      It will deadlock when cnic_delete_task() takes rtnl_lock() before
      calling cnic_ulp_stop_one().
      
      We fix it by removing the rtnl_lock() in cnic_delete_task().
      cnic_ulp_stop_one() has mutex and atomic bit ops to prevent important
      operations from being done more than once, so it is not necessary to take
      rtnl_lock().
      Signed-off-by: NMichael Chan <mchan@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      93ae6534
  14. 01 4月, 2011 1 次提交
  15. 13 3月, 2011 3 次提交
  16. 03 3月, 2011 3 次提交
  17. 01 3月, 2011 1 次提交
  18. 01 2月, 2011 1 次提交
  19. 28 1月, 2011 1 次提交
  20. 27 1月, 2011 1 次提交
  21. 07 1月, 2011 1 次提交
  22. 04 1月, 2011 2 次提交
  23. 01 1月, 2011 1 次提交