[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20190413142348.34716-1-yuehaibing@huawei.com>
Date: Sat, 13 Apr 2019 22:23:48 +0800
From: Yue Haibing <yuehaibing@...wei.com>
To: <viro@...iv.linux.org.uk>, <keescook@...omium.org>
CC: <linux-kernel@...r.kernel.org>, <linux-fsdevel@...r.kernel.org>,
YueHaibing <yuehaibing@...wei.com>
Subject: [PATCH -next] eventfd: Make eventfd_ida static
From: YueHaibing <yuehaibing@...wei.com>
Fix sparse warning:
fs/eventfd.c:26:1: warning:
symbol 'eventfd_ida' was not declared. Should it be static?
Signed-off-by: YueHaibing <yuehaibing@...wei.com>
---
fs/eventfd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/eventfd.c b/fs/eventfd.c
index ce8fa15..93b1fa7 100644
--- a/fs/eventfd.c
+++ b/fs/eventfd.c
@@ -23,7 +23,7 @@
#include <linux/seq_file.h>
#include <linux/idr.h>
-DEFINE_IDA(eventfd_ida);
+static DEFINE_IDA(eventfd_ida);
struct eventfd_ctx {
struct kref kref;
--
2.7.4
Powered by blists - more mailing lists