Hi Andrew, After merging the akpm-current tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: fs/fat/inode.c: In function 'fat_direct_IO': fs/fat/inode.c:252:2: error: implicit declaration of function 'iov_iter_count' [-Werror=implicit-function-declaration] size_t count = iov_iter_count(iter); ^ Caused by commit be33247df543 ("fs/fat: remove unnecessary includes"). Removing include files deemed "unnecessary" is fraught. Please see Rule 1 in Documentation/SubmitChecklist. I have added the following fix patch for today: From: Stephen Rothwell Date: Fri, 13 Mar 2015 17:00:15 +1100 Subject: [PATCH] fs/fat: put one actually necessary include file back Signed-off-by: Stephen Rothwell --- fs/fat/inode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 2c99d01a7018..c71b00fbca28 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include "fat.h" -- 2.1.4 -- Cheers, Stephen Rothwell sfr@canb.auug.org.au