1. 23 5月, 2011 1 次提交
    • 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
  2. 20 5月, 2011 1 次提交
  3. 19 5月, 2011 1 次提交
  4. 17 5月, 2011 3 次提交
  5. 12 5月, 2011 3 次提交
  6. 10 5月, 2011 1 次提交
  7. 22 4月, 2011 1 次提交
  8. 20 4月, 2011 2 次提交
  9. 11 4月, 2011 1 次提交
  10. 08 4月, 2011 5 次提交
  11. 07 4月, 2011 3 次提交
  12. 31 3月, 2011 6 次提交
  13. 17 3月, 2011 1 次提交
  14. 16 3月, 2011 1 次提交
  15. 15 3月, 2011 1 次提交
  16. 08 3月, 2011 6 次提交
  17. 04 3月, 2011 1 次提交
  18. 23 2月, 2011 2 次提交