diff options
author | Jens Axboe <jaxboe@fusionio.com> | 2011-01-10 21:50:33 +0100 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-01-10 21:50:33 +0100 |
commit | e6e1ee936d61d697735d17517678a626b7701ce4 (patch) | |
tree | 1cb8d45e69a1dadbf0dc0e8bb1b944a4ab86629c /drivers/block/cciss.h | |
parent | 2b51dca79a105dea022776ea7874193239df7fbd (diff) |
cciss: reinstate proper FIFO order of command queue list
Commit 8a3173de inadvertently changed the ordering when
switching to hlists. Change to regular list heads so we
can use tail list adds, this improves performance.
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/block/cciss.h')
-rw-r--r-- | drivers/block/cciss.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/cciss.h b/drivers/block/cciss.h index ae340ffc8f8..7915dd47314 100644 --- a/drivers/block/cciss.h +++ b/drivers/block/cciss.h @@ -103,8 +103,8 @@ struct ctlr_info struct access_method access; /* queue and queue Info */ - struct hlist_head reqQ; - struct hlist_head cmpQ; + struct list_head reqQ; + struct list_head cmpQ; unsigned int Qdepth; unsigned int maxQsinceinit; unsigned int maxSG; |