[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241125123055.3306313-1-zhangkunbo@huawei.com>
Date: Mon, 25 Nov 2024 12:30:55 +0000
From: Zhang Kunbo <zhangkunbo@...wei.com>
To: <viro@...iv.linux.org.uk>, <brauner@...nel.org>, <jack@...e.cz>
CC: <linux-fsdevel@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<liaochang1@...wei.com>, <chris.zjh@...wei.com>
Subject: [PATCH] x86: fix missing declartion of init_fs
fs/fs_struct.c should include include/linux/init_task.h
for declaration of init_fs. This fix 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@...wei.com>
---
fs/fs_struct.c | 1 +
1 file changed, 1 insertion(+)
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"
/*
--
2.34.1
Powered by blists - more mailing lists