The patch titled Subject: include/linux/mm.h: add prototype for __add_to_page_cache_locked() has been removed from the -mm tree. Its filename was mm-add-prototype-for-__add_to_page_cache_locked.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Souptick Joarder <jrdr.linux@xxxxxxxxx> Subject: include/linux/mm.h: add prototype for __add_to_page_cache_locked() Otherwise it causes a gcc warning: ../mm/filemap.c:830:14: warning: no previous prototype for `__add_to_page_cache_locked' [-Wmissing-prototypes] A previous attempt to make this function static led to compilation errors for a few architectures, because __add_to_page_cache_locked() is referred to by BPF code. Adding a prototype will silence the warning. Link: https://lkml.kernel.org/r/1608646792-29073-1-git-send-email-jrdr.linux@xxxxxxxxx Signed-off-by: Souptick Joarder <jrdr.linux@xxxxxxxxx> Cc: Alex Shi <alex.shi@xxxxxxxxxxxxxxxxx> Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm.h | 6 ++++++ 1 file changed, 6 insertions(+) --- a/include/linux/mm.h~mm-add-prototype-for-__add_to_page_cache_locked +++ a/include/linux/mm.h @@ -216,6 +216,12 @@ int overcommit_kbytes_handler(struct ctl loff_t *); int overcommit_policy_handler(struct ctl_table *, int, void *, size_t *, loff_t *); +/* + * Any attempt to mark this function as static leads to build failure + * for few architectures. Adding a prototype to silence gcc warning. + */ +int __add_to_page_cache_locked(struct page *page, struct address_space *mapping, + pgoff_t offset, gfp_t gfp, void **shadowp); #define nth_page(page,n) pfn_to_page(page_to_pfn((page)) + (n)) _ Patches currently in -mm which might be from jrdr.linux@xxxxxxxxx are