Skip to content

Commit bca6843

Browse files
committed
Merge branch 'aufs5.4/10static' into aufs5.4/11mmap
2 parents 48b883a + b806a06 commit bca6843

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

MAINTAINERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2836,12 +2836,12 @@ AUFS (advanced multi layered unification filesystem) FILESYSTEM
28362836
M: "J. R. Okajima" <[email protected]>
28372837
L: [email protected] (members only)
28382838
2839+
S: Supported
28392840
W: http://aufs.sourceforge.net
28402841
T: git://github.com/sfjro/aufs4-linux.git
2841-
S: Supported
2842-
F: Documentation/filesystems/aufs/
28432842
F: Documentation/ABI/testing/debugfs-aufs
28442843
F: Documentation/ABI/testing/sysfs-aufs
2844+
F: Documentation/filesystems/aufs/
28452845
F: fs/aufs/
28462846
F: include/uapi/linux/aufs_type.h
28472847

fs/aufs/cpup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ int cpup_entry(struct au_cp_generic *cpg, struct dentry *dst_parent,
696696
case S_IFCHR:
697697
case S_IFBLK:
698698
AuDebugOn(!capable(CAP_MKNOD));
699-
/*FALLTHROUGH*/
699+
fallthrough;
700700
case S_IFIFO:
701701
case S_IFSOCK:
702702
err = vfsub_mknod(h_dir, &h_path, mode, h_inode->i_rdev);

fs/aufs/hnotify.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ int au_hnotify(struct inode *h_dir, struct au_hnotify *hnotify, u32 mask,
571571
case FS_MOVED_TO:
572572
au_fset_hnjob(flags[AuHn_CHILD], XINO0);
573573
au_fset_hnjob(flags[AuHn_CHILD], MNTPNT);
574-
/*FALLTHROUGH*/
574+
fallthrough;
575575
case FS_CREATE:
576576
AuDebugOn(!h_child_name);
577577
break;

fs/aufs/opts.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ au_wbr_create_val(char *str, struct au_opt_wbr_create *create)
494494
err = e;
495495
break;
496496
}
497-
/*FALLTHROUGH*/
497+
fallthrough;
498498
case AuWbrCreate_MFS:
499499
case AuWbrCreate_PMFS:
500500
create->mfs_second = AUFS_MFS_DEF_SEC;
@@ -1226,7 +1226,7 @@ int au_opts_parse(struct super_block *sb, char *str, struct au_opts *opts)
12261226

12271227
case Opt_ignore:
12281228
pr_warn("ignored %s\n", opt_str);
1229-
/*FALLTHROUGH*/
1229+
fallthrough;
12301230
case Opt_ignore_silent:
12311231
skipped = 1;
12321232
err = 0;
@@ -1282,7 +1282,7 @@ static int au_opt_wbr_create(struct super_block *sb,
12821282
case AuWbrCreate_PMFSRR:
12831283
case AuWbrCreate_PMFSRRV:
12841284
sbinfo->si_wbr_mfs.mfsrr_watermark = create->mfsrr_watermark;
1285-
/*FALLTHROUGH*/
1285+
fallthrough;
12861286
case AuWbrCreate_MFS:
12871287
case AuWbrCreate_MFSV:
12881288
case AuWbrCreate_PMFS:
@@ -1502,7 +1502,7 @@ static int au_opt_br(struct super_block *sb, struct au_opt *opt,
15021502
/* Always goto add, not fallthrough */
15031503
case Opt_prepend:
15041504
opt->add.bindex = 0;
1505-
/* fallthrough */
1505+
fallthrough;
15061506
add: /* indented label */
15071507
case Opt_add:
15081508
err = au_br_add(sb, &opt->add,

0 commit comments

Comments
 (0)