linux/drivers/net/ixgbe
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
ixgbe.h ixgbe: Merge over-temp task into service task 2011-05-14 18:08:09 -07:00
ixgbe_82598.c ixgbe: improve EEPROM read/write operations 2011-05-04 12:17:33 -07:00
ixgbe_82599.c ixgbe: Add support for new 82599 adapter 2011-05-14 18:10:32 -07:00
ixgbe_common.c ixgbe: force unlock on timeout 2011-05-14 17:57:01 -07:00
ixgbe_common.h ixgbe: improve EEPROM read/write operations 2011-05-04 12:17:33 -07:00
ixgbe_dcb.c Fix common misspellings 2011-03-31 11:26:23 -03:00
ixgbe_dcb.h
ixgbe_dcb_82598.c ixgbe: fix static functions 2011-04-27 02:16:48 -07:00
ixgbe_dcb_82598.h
ixgbe_dcb_82599.c ixgbe: DCB, X540 devices do not respond to pause frames 2011-04-13 19:27:18 -07:00
ixgbe_dcb_82599.h ixgbe: DCB, misallocated packet buffer size with X540 device 2011-04-13 19:26:43 -07:00
ixgbe_dcb_nl.c ixgbe: cleanup short msleep's (<20ms) to use usleep_range 2011-04-13 19:23:11 -07:00
ixgbe_ethtool.c ixgbe: Merge ATR reinit into the service task 2011-05-14 18:05:37 -07:00
ixgbe_fcoe.c ixgbe: do not clear FCoE DDP error status for received ABTS 2011-04-27 02:18:04 -07:00
ixgbe_fcoe.h
ixgbe_main.c Add appropriate <linux/prefetch.h> include for prefetch users 2011-05-22 21:41:57 -07:00
ixgbe_mbx.c
ixgbe_mbx.h ixgbe: Add macvlan support for VF 2011-05-14 17:53:09 -07:00
ixgbe_phy.c ixgbe: Use function pointer for ixgbe_acquire/release_swfw_sync() 2011-05-04 12:13:59 -07:00
ixgbe_phy.h
ixgbe_sriov.c ixgbe: fix sparse warning 2011-05-14 18:09:39 -07:00
ixgbe_sriov.h
ixgbe_type.h ixgbe: Add support for new 82599 adapter 2011-05-14 18:10:32 -07:00
ixgbe_x540.c ixgbe: improve EEPROM read/write operations 2011-05-04 12:17:33 -07:00