diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2011-05-22 18:54:21 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-22 11:26:02 -0700 |
commit | 9ce6e0be0626a5de2aca8b769a4aa57086257156 (patch) | |
tree | a6c2d49e85c8aca4665d54f8a3629196d5f7fd23 /fs/inode.c | |
parent | dcb4a1f0e0367efb813907e5083998bbb98b0456 (diff) | |
download | op-kernel-dev-9ce6e0be0626a5de2aca8b769a4aa57086257156.zip op-kernel-dev-9ce6e0be0626a5de2aca8b769a4aa57086257156.tar.gz |
fs: add missing prefetch.h include
Fixes this build error on s390 and probably other archs as well:
fs/inode.c: In function 'new_inode':
fs/inode.c:894:2: error: implicit declaration of function 'spin_lock_prefetch'
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
[ Happens on architectures that don't define their own prefetch
functions in <asm/processor.h>, and instead rely on the default
ones in <linux/prefetch.h> - Linus]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/inode.c')
-rw-r--r-- | fs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -24,6 +24,7 @@ #include <linux/mount.h> #include <linux/async.h> #include <linux/posix_acl.h> +#include <linux/prefetch.h> #include <linux/ima.h> #include <linux/cred.h> #include "internal.h" |