[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20190910021747.11216-1-linmiaohe@huawei.com>
Date: Tue, 10 Sep 2019 10:17:47 +0800
From: Miaohe Lin <linmiaohe@...wei.com>
To: <adobriyan@...il.com>, <tglx@...utronix.de>,
<akpm@...ux-foundation.org>, <dhowells@...hat.com>,
<cyphar@...har.com>, <christian@...uner.io>,
<aubrey.li@...ux.intel.com>, <linux-kernel@...r.kernel.org>,
<linux-fsdevel@...r.kernel.org>
CC: <linmiaohe@...wei.com>, <mingfangsen@...wei.com>
Subject: [PATCH] proc:fix confusing macro arg name
state_size and ops are in the wrong position, fix it.
Signed-off-by: Miaohe Lin <linmiaohe@...wei.com>
---
include/linux/proc_fs.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h
index a705aa2d03f9..0640be56dcbd 100644
--- a/include/linux/proc_fs.h
+++ b/include/linux/proc_fs.h
@@ -58,8 +58,8 @@ extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
struct proc_dir_entry *parent, const struct seq_operations *ops,
unsigned int state_size, void *data);
-#define proc_create_net(name, mode, parent, state_size, ops) \
- proc_create_net_data(name, mode, parent, state_size, ops, NULL)
+#define proc_create_net(name, mode, parent, ops, state_size) \
+ proc_create_net_data(name, mode, parent, ops, state_size, NULL)
struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
struct proc_dir_entry *parent,
int (*show)(struct seq_file *, void *), void *data);
--
2.21.GIT
Powered by blists - more mailing lists