[PATCH -next] efs: rename the fs context operations

Hongbo Li posted 1 patch 1 year, 5 months ago
fs/efs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH -next] efs: rename the fs context operations
Posted by Hongbo Li 1 year, 5 months ago
Just rename efs_context_opts to efs_context_ops for better
understanding.

Signed-off-by: Hongbo Li <lihongbo22@huawei.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