summaryrefslogtreecommitdiff
path: root/drivers/block/cciss_cmd.h
diff options
context:
space:
mode:
authorJens Axboe <jaxboe@fusionio.com>2011-01-10 20:50:33 (GMT)
committerJens Axboe <jaxboe@fusionio.com>2011-01-10 20:50:33 (GMT)
commite6e1ee936d61d697735d17517678a626b7701ce4 (patch)
tree1cb8d45e69a1dadbf0dc0e8bb1b944a4ab86629c /drivers/block/cciss_cmd.h
parent2b51dca79a105dea022776ea7874193239df7fbd (diff)
downloadlinux-fsl-qoriq-e6e1ee936d61d697735d17517678a626b7701ce4.tar.xz
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_cmd.h')
-rw-r--r--drivers/block/cciss_cmd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss_cmd.h b/drivers/block/cciss_cmd.h
index eb060f1..35463d2 100644
--- a/drivers/block/cciss_cmd.h
+++ b/drivers/block/cciss_cmd.h
@@ -195,7 +195,7 @@ typedef struct _CommandList_struct {
int ctlr;
int cmd_type;
long cmdindex;
- struct hlist_node list;
+ struct list_head list;
struct request * rq;
struct completion *waiting;
int retry_count;