diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-04-29 03:54:39 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-04-29 08:48:55 -0400 |
commit | d7e3c3249ef23b4617393c69fe464765b4ff1645 (patch) | |
tree | 3471ea20b7fb4c4a9bbd7cfb3cc952344b5501d6 /block/blk-core.c | |
parent | d34c87e4ba3d1857f80a65179e81a18705a31656 (diff) |
block: add large command support
This patch changes rq->cmd from the static array to a pointer to
support large commands.
We rarely handle large commands. So for optimization, a struct request
still has a static array for a command. rq_init sets rq->cmd pointer
to the static array.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index e6fdb288be65..5d09f8c56024 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -117,6 +117,7 @@ void blk_rq_init(struct request_queue *q, struct request *rq) | |||
117 | rq->sector = rq->hard_sector = (sector_t) -1; | 117 | rq->sector = rq->hard_sector = (sector_t) -1; |
118 | INIT_HLIST_NODE(&rq->hash); | 118 | INIT_HLIST_NODE(&rq->hash); |
119 | RB_CLEAR_NODE(&rq->rb_node); | 119 | RB_CLEAR_NODE(&rq->rb_node); |
120 | rq->cmd = rq->__cmd; | ||
120 | rq->tag = -1; | 121 | rq->tag = -1; |
121 | rq->ref_count = 1; | 122 | rq->ref_count = 1; |
122 | } | 123 | } |