From: Heiko Carstens Date: Sun, 22 May 2011 16:54:21 +0000 (+0200) Subject: fs: add missing prefetch.h include X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9ce6e0be0626a5de2aca8b769a4aa57086257156;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git 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 [ Happens on architectures that don't define their own prefetch functions in , and instead rely on the default ones in - Linus] Signed-off-by: Linus Torvalds --- diff --git a/fs/inode.c b/fs/inode.c index 33c963d08ab..05f4fa52132 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include "internal.h"