Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d8fe64237646fdd2c2de2722ec4189a5999119d
Commit:     8d8fe64237646fdd2c2de2722ec4189a5999119d
Parent:     ffb035591f2736921d5dadcf8597bc1da1ba71e5
Author:     Dave Kleikamp <[EMAIL PROTECTED]>
AuthorDate: Sat Oct 13 12:58:00 2007 -0500
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Oct 13 11:14:04 2007 -0700

    JFS: Bio cleanup: Replace missing return statements
    
    commit e30408b2a99cb7b8bf529c7dc2328a19d71894cf ("JFS: fix bio-related
    build breakage") removed some "return 0;" statements, rather than
    changing them to null returns.
    
    Signed-off-by: Dave Kleikamp <[EMAIL PROTECTED]>
    Cc: Jeff Garzik <[EMAIL PROTECTED]>
    Cc: Randy Dunlap <[EMAIL PROTECTED]>
    Cc: Jens Axboe <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 fs/jfs/jfs_logmgr.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c
index ccfd029..15a3974 100644
--- a/fs/jfs/jfs_logmgr.c
+++ b/fs/jfs/jfs_logmgr.c
@@ -2234,6 +2234,8 @@ static void lbmIODone(struct bio *bio, int error)
 
                /* wakeup I/O initiator */
                LCACHE_WAKEUP(&bp->l_ioevent);
+
+               return;
        }
 
        /*
@@ -2258,6 +2260,7 @@ static void lbmIODone(struct bio *bio, int error)
        if (bp->l_flag & lbmDIRECT) {
                LCACHE_WAKEUP(&bp->l_ioevent);
                LCACHE_UNLOCK(flags);
+               return;
        }
 
        tail = log->wqueue;
-
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