Message ID | 20241126024532.3465039-1-zhangkunbo@huawei.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [v2] x86: fix missing declaration of init_fs | expand |
diff --git a/fs/fs_struct.c b/fs/fs_struct.c index 64c2d0814ed6..100bd3474476 100644 --- a/fs/fs_struct.c +++ b/fs/fs_struct.c @@ -6,6 +6,7 @@ #include <linux/path.h> #include <linux/slab.h> #include <linux/fs_struct.h> +#include <linux/init_task.h> #include "internal.h" /*
fs/fs_struct.c should include include/linux/init_task.h for declaration of init_fs. This fixes the sparse warning: fs/fs_struct.c:163:18: warning: symbol 'init_fs' was not declared. Should it be static? Signed-off-by: Zhang Kunbo <zhangkunbo@huawei.com> --- v2: - fix some typos fs/fs_struct.c | 1 + 1 file changed, 1 insertion(+)