The patch titled ufs: fix parenthesisation in ufs_set_fs_state() has been added to the -mm tree. Its filename is ufs-fix-parenthesisation-in-ufs_set_fs_state.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 *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: ufs: fix parenthesisation in ufs_set_fs_state() From: Roel Kluin <12o3l@xxxxxxxxxx> This bug snuck in with commit 252e211e90ce56bf005cb533ad5a297c18c19407 Author: Mark Fortescue <mark@xxxxxxxxxxxxxxxxxx> Date: Tue Oct 16 23:26:31 2007 -0700 Add in SunOS 4.1.x compatible mode for UFS Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Acked-by: Evgeniy Dushistov <dushistov@xxxxxxx> Cc: Mark Fortescue <mark@xxxxxxxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ufs/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/ufs/util.h~ufs-fix-parenthesisation-in-ufs_set_fs_state fs/ufs/util.h --- a/fs/ufs/util.h~ufs-fix-parenthesisation-in-ufs_set_fs_state +++ a/fs/ufs/util.h @@ -58,7 +58,7 @@ ufs_set_fs_state(struct super_block *sb, { switch (UFS_SB(sb)->s_flags & UFS_ST_MASK) { case UFS_ST_SUNOS: - if (fs32_to_cpu(sb, usb3->fs_postblformat == UFS_42POSTBLFMT)) { + if (fs32_to_cpu(sb, usb3->fs_postblformat) == UFS_42POSTBLFMT) { usb1->fs_u0.fs_sun.fs_state = cpu_to_fs32(sb, value); break; } _ Patches currently in -mm which might be from 12o3l@xxxxxxxxxx are ufs-fix-parenthesisation-in-ufs_set_fs_state.patch git-alsa.patch git-cifs.patch git-dvb.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