From: Clemens Ladisch Date: Fri, 6 Mar 2009 08:16:49 +0000 (+0100) Subject: udf: fix novrs mount option X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4136801aec27b56ae4d06b638b4e9956346b08c8;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git udf: fix novrs mount option The novrs mount option was broken due to a missing break. Signed-off-by: Clemens Ladisch Signed-off-by: Jan Kara --- diff --git a/fs/udf/super.c b/fs/udf/super.c index 4457da0e0bc9..36a467ca1622 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -439,6 +439,7 @@ static int udf_parse_options(char *options, struct udf_options *uopt, switch (token) { case Opt_novrs: uopt->novrs = 1; + break; case Opt_bs: if (match_int(&args[0], &option)) return 0;