Include "internal.h" for the ns_dentry_operations definiton. Fixes the following spare warning: fs/nsfs.c:41:32: warning: symbol 'ns_dentry_operations' was not declared. Should it be static? Signed-off-by: Ben Dooks <ben.dooks@xxxxxxxxxxxxxxx> --- Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: linux-fsdevel@xxxxxxxxxxxxxxx Cc: linux-kernel@xxxxxxxxxxxxxxx --- fs/nsfs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/nsfs.c b/fs/nsfs.c index a0431642c6b5..ea384d0f225a 100644 --- a/fs/nsfs.c +++ b/fs/nsfs.c @@ -11,6 +11,8 @@ #include <linux/nsfs.h> #include <linux/uaccess.h> +#include "internal.h" + static struct vfsmount *nsfs_mnt; static long ns_ioctl(struct file *filp, unsigned int ioctl, -- 2.23.0