diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 15:50:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 15:50:29 -0400 |
commit | 268bb0ce3e87872cb9290c322b0d35bce230d88f (patch) | |
tree | c8331ade4a3e24fc589c4eb62731bc2312d35333 /include/asm-generic/xor.h | |
parent | 257313b2a87795e07a0bdf58d0fffbdba8b31051 (diff) |
sanitize <linux/prefetch.h> usage
Commit e66eed651fd1 ("list: remove prefetching from regular list
iterators") removed the include of prefetch.h from list.h, which
uncovered several cases that had apparently relied on that rather
obscure header file dependency.
So this fixes things up a bit, using
grep -L linux/prefetch.h $(git grep -l '[^a-z_]prefetchw*(' -- '*.[ch]')
grep -L 'prefetchw*(' $(git grep -l 'linux/prefetch.h' -- '*.[ch]')
to guide us in finding files that either need <linux/prefetch.h>
inclusion, or have it despite not needing it.
There are more of them around (mostly network drivers), but this gets
many core ones.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-generic/xor.h')
-rw-r--r-- | include/asm-generic/xor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/xor.h b/include/asm-generic/xor.h index aaab875e1a35..6028fb862254 100644 --- a/include/asm-generic/xor.h +++ b/include/asm-generic/xor.h | |||
@@ -13,7 +13,7 @@ | |||
13 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 13 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <asm/processor.h> | 16 | #include <linux/prefetch.h> |
17 | 17 | ||
18 | static void | 18 | static void |
19 | xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) | 19 | xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) |