The patch titled ufs: fix sun state has been added to the -mm tree. Its filename is ufs-fix-sun-state.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ufs: fix sun state From: Evgeniy Dushistov <dushistov@xxxxxxx> Different types of ufs hold state in different places, to hide complexity of this, there is ufs_get_fs_state, it returns state according to "UFS_SB(sb)->s_flags", but during mount ufs_get_fs_state is called, before setting s_flags, this cause message for ufs types like sun ufs: "fs need fsck", and remount in readonly state. Signed-off-by: Evgeniy Dushistov <dushistov@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ufs/super.c | 4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) diff -puN fs/ufs/super.c~ufs-fix-sun-state fs/ufs/super.c --- a/fs/ufs/super.c~ufs-fix-sun-state +++ a/fs/ufs/super.c @@ -934,7 +934,7 @@ magic_found: flags |= UFS_ST_SUN; } - + sbi->s_flags = flags;/*after that line some functions use s_flags*/ ufs_print_super_stuff(sb, usb1, usb2, usb3); /* @@ -1065,8 +1065,6 @@ magic_found: UFS_MOUNT_UFSTYPE_44BSD) uspi->s_maxsymlinklen = fs32_to_cpu(sb, usb3->fs_un2.fs_44.fs_maxsymlinklen); - - sbi->s_flags = flags; inode = iget(sb, UFS_ROOTINO); if (!inode || is_bad_inode(inode)) _ Patches currently in -mm which might be from dushistov@xxxxxxx are ufs-convert-to-new-aops.patch add-in-sunos-41x-compatible-mode-for-ufs.patch add-in-sunos-41x-compatible-mode-for-ufs-fix.patch ufs-implement-show_options.patch ufs-move-non-layout-parts-of-ufs_fsh-to-fs-ufs.patch ufs-fix-sun-state.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