Skip to content

Commit

Permalink
ext2: fix return values on parse_options() failure
Browse files Browse the repository at this point in the history
parse_options() in ext2 should return 0 when parse the mount options fails.

Signed-off-by: Zhao Hongjiang <[email protected]>
Reviewed-by: Lukas Czerner <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
  • Loading branch information
Zhao Hongjiang authored and jankara committed Oct 9, 2012
1 parent c3d59ad commit ae2cf42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ext2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ static int parse_options(char *options, struct super_block *sb)
uid = make_kuid(current_user_ns(), option);
if (!uid_valid(uid)) {
ext2_msg(sb, KERN_ERR, "Invalid uid value %d", option);
return -1;
return 0;

}
sbi->s_resuid = uid;
Expand All @@ -480,7 +480,7 @@ static int parse_options(char *options, struct super_block *sb)
gid = make_kgid(current_user_ns(), option);
if (!gid_valid(gid)) {
ext2_msg(sb, KERN_ERR, "Invalid gid value %d", option);
return -1;
return 0;
}
sbi->s_resgid = gid;
break;
Expand Down

0 comments on commit ae2cf42

Please sign in to comment.