1
0
Fork 0
alistair23-linux/drivers/net/cxgb4
Paul Gortmaker 70c7160619 Add appropriate <linux/prefetch.h> include for prefetch users
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: Paul <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: Linus Torvalds <torvalds@linux-foundation.org>
2011-05-22 21:41:57 -07:00
..
Makefile cxgb4: Add main driver file and driver Makefile 2010-04-01 19:29:16 -07:00
cxgb4.h net: cxgb4{,vf}: convert to hw_features 2011-04-17 17:51:32 -07:00
cxgb4_main.c ethtool: cosmetic: Use ethtool ethtool_cmd_speed API 2011-04-29 14:03:01 -07:00
cxgb4_uld.h cxgb4: function namespace cleanup (v3) 2010-10-21 04:25:49 -07:00
l2t.c cxgb4: function namespace cleanup (v3) 2010-10-21 04:25:49 -07:00
l2t.h cxgb4: function namespace cleanup (v3) 2010-10-21 04:25:49 -07:00
sge.c Add appropriate <linux/prefetch.h> include for prefetch users 2011-05-22 21:41:57 -07:00
t4_hw.c Fix common misspellings 2011-03-31 11:26:23 -03:00
t4_hw.h cxgb4: support eeprom read/write on functions other than 0 2010-08-23 20:38:14 -07:00
t4_msg.h RDMA/cxgb4: Use ULP_MODE_TCPDDP 2011-03-14 12:09:12 -07:00
t4_regs.h cxgb4: get on-chip queue info from FW and create a memory window for them 2010-08-02 16:26:42 -07:00
t4fw_api.h cxgb4: distinguish between 1-lane KR/KX and 4-lane KR/KX/KX4 ports 2010-12-16 13:16:00 -08:00