diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-04-07 08:59:11 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-04-07 08:59:11 +0200 |
commit | 2385327725419a76cfbca7258abd95908b8ba9eb (patch) | |
tree | dee9c8167092707fbd3f1b1c5fdadc33ccf924a5 /block | |
parent | 75e50984f062de2abc4bd84c642923e2c48ce2ae (diff) | |
download | op-kernel-dev-2385327725419a76cfbca7258abd95908b8ba9eb.zip op-kernel-dev-2385327725419a76cfbca7258abd95908b8ba9eb.tar.gz |
block: remove unused REQ_UNPLUG
The request inherits the unplug flag from the bio, but it isn't actually
used. The bio flag stops at __make_request(), which tells it to unplug
after submission. Passing it on to the request doesn't make any sense.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 3688abf..43fdedc 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -1123,8 +1123,6 @@ void init_request_from_bio(struct request *req, struct bio *bio) if (bio_sync(bio)) req->cmd_flags |= REQ_RW_SYNC; - if (bio_unplug(bio)) - req->cmd_flags |= REQ_UNPLUG; if (bio_rw_meta(bio)) req->cmd_flags |= REQ_RW_META; if (bio_noidle(bio)) |