The patch titled Subject: fs/affs/super.c: fix switch indentation has been added to the -mm tree. Its filename is fs-affs-superc-fix-switch-indentation.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-affs-superc-fix-switch-indentation.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-affs-superc-fix-switch-indentation.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Fabian Frederick <fabf@xxxxxxxxx> Subject: fs/affs/super.c: fix switch indentation Fix checkpatch error: ERROR: switch and case should be at the same indent Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/affs/super.c | 66 +++++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff -puN fs/affs/super.c~fs-affs-superc-fix-switch-indentation fs/affs/super.c --- a/fs/affs/super.c~fs-affs-superc-fix-switch-indentation +++ a/fs/affs/super.c @@ -432,39 +432,39 @@ got_root: sb->s_flags |= MS_RDONLY; } switch (chksum) { - case MUFS_FS: - case MUFS_INTLFFS: - case MUFS_DCFFS: - sbi->s_flags |= SF_MUFS; - /* fall thru */ - case FS_INTLFFS: - case FS_DCFFS: - sbi->s_flags |= SF_INTL; - break; - case MUFS_FFS: - sbi->s_flags |= SF_MUFS; - break; - case FS_FFS: - break; - case MUFS_OFS: - sbi->s_flags |= SF_MUFS; - /* fall thru */ - case FS_OFS: - sbi->s_flags |= SF_OFS; - sb->s_flags |= MS_NOEXEC; - break; - case MUFS_DCOFS: - case MUFS_INTLOFS: - sbi->s_flags |= SF_MUFS; - case FS_DCOFS: - case FS_INTLOFS: - sbi->s_flags |= SF_INTL | SF_OFS; - sb->s_flags |= MS_NOEXEC; - break; - default: - pr_err("Unknown filesystem on device %s: %08X\n", - sb->s_id, chksum); - return -EINVAL; + case MUFS_FS: + case MUFS_INTLFFS: + case MUFS_DCFFS: + sbi->s_flags |= SF_MUFS; + /* fall thru */ + case FS_INTLFFS: + case FS_DCFFS: + sbi->s_flags |= SF_INTL; + break; + case MUFS_FFS: + sbi->s_flags |= SF_MUFS; + break; + case FS_FFS: + break; + case MUFS_OFS: + sbi->s_flags |= SF_MUFS; + /* fall thru */ + case FS_OFS: + sbi->s_flags |= SF_OFS; + sb->s_flags |= MS_NOEXEC; + break; + case MUFS_DCOFS: + case MUFS_INTLOFS: + sbi->s_flags |= SF_MUFS; + case FS_DCOFS: + case FS_INTLOFS: + sbi->s_flags |= SF_INTL | SF_OFS; + sb->s_flags |= MS_NOEXEC; + break; + default: + pr_err("Unknown filesystem on device %s: %08X\n", + sb->s_id, chksum); + return -EINVAL; } if (mount_flags & SF_VERBOSE) { _ Patches currently in -mm which might be from fabf@xxxxxxxxx are fs-ext4-fsyncc-generic_file_fsync-call-based-on-barrier-flag.patch ocfs2-remove-unnecessary-else-in-ocfs2_set_acl.patch ocfs2-make-resv_lock-spinlock-static.patch add-another-clock-for-use-with-the-soft-lockup-watchdog.patch powerpc-add-running_clock-for-powerpc-to-prevent-spurious-softlockup-warnings.patch fs-befs-linuxvfsc-remove-unnecessary-casting.patch fs-befs-linuxvfsc-remove-unnecessary-casting-fix.patch fs-coda-dirc-forward-declaration-clean-up.patch fs-ufs-superc-remove-unnecessary-casting.patch fs-ufs-superc-fix-potential-race-condition.patch fs-reiserfs-inodec-replace-0-by-null-for-pointers.patch ptrace-remove-linux-compath-inclusion-under-config_compat.patch vmcore-fix-pt_note-n_namesz-n_descsz-overflow-issue.patch fs-affs-filec-replace-if-bug-by-bug_on.patch fs-affs-filec-fix-direct-io-writes-beyond-eof.patch fs-affs-superc-destroy-sbi-mutex-in-affs_kill_sb.patch fs-affs-use-unsigned-int-for-string-lengths.patch define-affsnamemax-to-replace-constant-use.patch fs-affs-amigaffsc-remove-else-after-return.patch fs-affs-bitmapc-remove-unnecessary-return.patch fs-affs-inodec-remove-double-extern-affs_symlink_inode_operations.patch fs-affs-superc-fix-switch-indentation.patch 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