The patch titled Subject: fs/buffer.c: make __getblk_slow() static has been removed from the -mm tree. Its filename was fs-bufferc-make-__getblk_slow-static.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Eric Biggers <ebiggers@xxxxxxxxxx> Subject: fs/buffer.c: make __getblk_slow() static __getblk_slow() was exported to modules in commit 3b5e6454aaf6 ("fs/buffer.c: support buffer cache allocations with gfp modifiers"). This seems to have been a mistake, as no users were introduced nor was the function declared in a header. Change it back to 'static'. Link: http://lkml.kernel.org/r/1473712241-85003-1-git-send-email-ebiggers@xxxxxxxxxx Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/buffer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN fs/buffer.c~fs-bufferc-make-__getblk_slow-static fs/buffer.c --- a/fs/buffer.c~fs-bufferc-make-__getblk_slow-static +++ a/fs/buffer.c @@ -1078,7 +1078,7 @@ grow_buffers(struct block_device *bdev, return grow_dev_page(bdev, block, index, size, sizebits, gfp); } -struct buffer_head * +static struct buffer_head * __getblk_slow(struct block_device *bdev, sector_t block, unsigned size, gfp_t gfp) { @@ -1109,7 +1109,6 @@ __getblk_slow(struct block_device *bdev, free_more_memory(); } } -EXPORT_SYMBOL(__getblk_slow); /* * The relationship between dirty buffers and dirty pages: _ Patches currently in -mm which might be from ebiggers@xxxxxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html