From b877ef793e8720ddc524ae4e06950cc320f69e57 Mon Sep 17 00:00:00 2001 From: waterwin Date: Fri, 19 May 2023 01:44:28 +0000 Subject: [PATCH] fixed 4efae54 from https://gitee.com/waterwin/kernel_linux_5.10/pulls/852 sharefs add mount options end Signed-off-by: waterwin --- fs/sharefs/super.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/sharefs/super.c b/fs/sharefs/super.c index e130126496a6..e0645dcd91fd 100644 --- a/fs/sharefs/super.c +++ b/fs/sharefs/super.c @@ -13,10 +13,12 @@ enum { OPT_USER_ID, + OPT_ERR, }; static match_table_t sharefs_tokens = { - { OPT_USER_ID, "user_id=%s"}, + { OPT_USER_ID, "user_id=%s" }, + { OPT_ERR, NULL } }; int sharefs_parse_options(struct sharefs_sb_info *sbi, const char *data) -- Gitee