The patch titled udf: fix novrs mount option has been removed from the -mm tree. Its filename was udf-fix-novrs-mount-option.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: udf: fix novrs mount option From: Clemens Ladisch <clemens@xxxxxxxxxx> The novrs mount option was broken due to a missing break. Signed-off-by: Clemens Ladisch <clemens@xxxxxxxxxx> Cc: Jan Kara <jack@xxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/udf/super.c | 1 + 1 file changed, 1 insertion(+) diff -puN fs/udf/super.c~udf-fix-novrs-mount-option fs/udf/super.c --- a/fs/udf/super.c~udf-fix-novrs-mount-option +++ a/fs/udf/super.c @@ -439,6 +439,7 @@ static int udf_parse_options(char *optio switch (token) { case Opt_novrs: uopt->novrs = 1; + break; case Opt_bs: if (match_int(&args[0], &option)) return 0; _ Patches currently in -mm which might be from clemens@xxxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html