Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f81e8a43871f44f98dd14e83a83bf9ca0b3b46c5
Commit:     f81e8a43871f44f98dd14e83a83bf9ca0b3b46c5
Parent:     55a26aeec07f8fdb0f7027a605a430338eb78f4e
Author:     Roel Kluin <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 23 15:23:29 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Feb 23 17:12:13 2008 -0800

    ufs: fix parenthesisation in ufs_set_fs_state()
    
    This bug snuck in with
    
    commit 252e211e90ce56bf005cb533ad5a297c18c19407
    Author: Mark Fortescue <[EMAIL PROTECTED]>
    Date:   Tue Oct 16 23:26:31 2007 -0700
    
        Add in SunOS 4.1.x compatible mode for UFS
    
    Signed-off-by: Roel Kluin <[EMAIL PROTECTED]>
    Acked-by: Evgeniy Dushistov <[EMAIL PROTECTED]>
    Cc: Mark Fortescue <[EMAIL PROTECTED]>
    Cc: <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 fs/ufs/util.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/ufs/util.h b/fs/ufs/util.h
index b26fc4d..23ceed8 100644
--- a/fs/ufs/util.h
+++ b/fs/ufs/util.h
@@ -58,7 +58,7 @@ ufs_set_fs_state(struct super_block *sb, struct 
ufs_super_block_first *usb1,
 {
        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;
                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to