Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bb4067e34159648d394943d5e2a011f838bff22f
Commit:     bb4067e34159648d394943d5e2a011f838bff22f
Parent:     3e67c0987d7567ad666641164a153dca9a43b11d
Author:     Jens Axboe <[EMAIL PROTECTED]>
AuthorDate: Thu Dec 21 21:20:01 2006 +0100
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Dec 21 22:01:04 2006 -0800

    [PATCH] elevator: fixup typo in merge logic
    
    The recent io scheduler allow_merge commit left the block layer with
    no merging, oops. This patch fixes that up.
    
    That means the CFQ change needs to be verified again, it might not fix
    the original bug now.  But that's a seperate thing, I'll double check
    that tomorrow.
    
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 block/elevator.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/elevator.c b/block/elevator.c
index 62c7a30..536be74 100644
--- a/block/elevator.c
+++ b/block/elevator.c
@@ -82,7 +82,7 @@ inline int elv_rq_merge_ok(struct request *rq, struct bio 
*bio)
        /*
         * must be same device and not a special request
         */
-       if (rq->rq_disk != bio->bi_bdev->bd_disk || !rq->special)
+       if (rq->rq_disk != bio->bi_bdev->bd_disk || rq->special)
                return 0;
 
        if (!elv_iosched_allow_merge(rq, bio))
-
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