All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/filemap: Fix warning: no previous prototype
@ 2020-12-17  2:03 Xiangyang Yu
  2020-12-17  2:23 ` Matthew Wilcox
  0 siblings, 1 reply; 7+ messages in thread
From: Xiangyang Yu @ 2020-12-17  2:03 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, linux-kernel

Fixed the warning when building with warnings enabled (W=1),
This function is only used in filemap.c, so mark this function
with 'static'.

mm/filemap.c:830:14: warning: no previous prototype for ‘__add_to_page_cache_locked’ [-Wmissing-prototypes]

Signed-off-by: Xiangyang Yu <yuxiangyang4@huawei.com>
---
 mm/filemap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/filemap.c b/mm/filemap.c
index c178022d7893..edaba5251bec 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -827,7 +827,7 @@ int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask)
 }
 EXPORT_SYMBOL_GPL(replace_page_cache_page);
 
-noinline int __add_to_page_cache_locked(struct page *page,
+static noinline int __add_to_page_cache_locked(struct page *page,
 					struct address_space *mapping,
 					pgoff_t offset, gfp_t gfp,
 					void **shadowp)
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-12-21 19:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-17  2:03 [PATCH] mm/filemap: Fix warning: no previous prototype Xiangyang Yu
2020-12-17  2:23 ` Matthew Wilcox
2020-12-18  4:09   ` Souptick Joarder
2020-12-18  4:09     ` Souptick Joarder
2020-12-18 17:57     ` Andrew Morton
2020-12-21 19:36       ` Souptick Joarder
2020-12-21 19:36         ` Souptick Joarder

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.