[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20240821061422.2273380-1-lihongbo22@huawei.com>
Date: Wed, 21 Aug 2024 14:14:22 +0800
From: Hongbo Li <lihongbo22@...wei.com>
To: <brauner@...nel.org>, <bodonnel@...hat.com>
CC: <jlayton@...nel.org>, <chuck.lever@...cle.com>, <amir73il@...il.com>,
<lihongbo22@...wei.com>, <linux-kernel@...r.kernel.org>
Subject: [PATCH -next] efs: rename the fs context operations
Just rename efs_context_opts to efs_context_ops for better
understanding.
Signed-off-by: Hongbo Li <lihongbo22@...wei.com>
---
fs/efs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/efs/super.c b/fs/efs/super.c
index e4421c10caeb..57c373bbc190 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -359,7 +359,7 @@ struct efs_context {
unsigned long s_mount_opts;
};
-static const struct fs_context_operations efs_context_opts = {
+static const struct fs_context_operations efs_context_ops = {
.parse_param = efs_parse_param,
.get_tree = efs_get_tree,
.reconfigure = efs_reconfigure,
@@ -377,7 +377,7 @@ static int efs_init_fs_context(struct fs_context *fc)
if (!ctx)
return -ENOMEM;
fc->fs_private = ctx;
- fc->ops = &efs_context_opts;
+ fc->ops = &efs_context_ops;
return 0;
}
--
2.34.1
Powered by blists - more mailing lists