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

From: Hongbo Li
Date: Wed Aug 21 2024 - 02:07:06 EST


Just rename efs_context_opts to efs_context_ops for better
understanding.

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