From 2f7601cb8608fbf03957c0a4e3dc3fba72710eab Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 21 Feb 2019 15:49:39 +0800 Subject: [PATCH] fsnotify/fdinfo: include fdinfo.h for inotify_show_fdinfo() mainline inclusion from mainline-5.0-rc1 commit d6f7aa9820f21a879af8ceda17b2ebd1cf4beb25 category: bugfix bugzilla: 10640 CVE: NA --------------------------- inotify_show_fdinfo() is defined in fs/notify/fdinfo.c and declared in fs/notify/fdinfo.h, but the declaration isn't included at the point of the definition. Include the header to enforce that the definition matches the declaration. This addresses a gcc warning when -Wmissing-prototypes is enabled. Signed-off-by: Eric Biggers Signed-off-by: Jan Kara Signed-off-by: yangerkun Reviewed-by: zhangyi (F) Signed-off-by: Yang Yingliang --- fs/notify/fdinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/notify/fdinfo.c b/fs/notify/fdinfo.c index 86fcf5814279..c4f18a8a8161 100644 --- a/fs/notify/fdinfo.c +++ b/fs/notify/fdinfo.c @@ -15,6 +15,7 @@ #include #include "inotify/inotify.h" +#include "fdinfo.h" #include "fsnotify.h" #if defined(CONFIG_PROC_FS) -- GitLab