diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2011-02-15 16:32:48 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-18 13:31:19 -0500 |
commit | 9e0fc764eaec082cd2ffcf82568dfdd086935934 (patch) | |
tree | 85a9a3829b8e0ed285e989beb074a9c466574091 /drivers/scsi/hpsa.h | |
parent | 5767a1c498931417e69e663ddd5e110cbaabec32 (diff) |
[SCSI] hpsa: do not re-order commands in internal queues
Driver's internal queues should be FIFO, not LIFO.
This is a port of an almost identical patch from cciss by Jens Axboe.
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/hpsa.h')
-rw-r--r-- | drivers/scsi/hpsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/hpsa.h b/drivers/scsi/hpsa.h index 074d237f4497..e89819342364 100644 --- a/drivers/scsi/hpsa.h +++ b/drivers/scsi/hpsa.h | |||
@@ -75,8 +75,8 @@ struct ctlr_info { | |||
75 | struct access_method access; | 75 | struct access_method access; |
76 | 76 | ||
77 | /* queue and queue Info */ | 77 | /* queue and queue Info */ |
78 | struct hlist_head reqQ; | 78 | struct list_head reqQ; |
79 | struct hlist_head cmpQ; | 79 | struct list_head cmpQ; |
80 | unsigned int Qdepth; | 80 | unsigned int Qdepth; |
81 | unsigned int maxQsinceinit; | 81 | unsigned int maxQsinceinit; |
82 | unsigned int maxSG; | 82 | unsigned int maxSG; |