Commit 9e0fc764 authored by Stephen M. Cameron's avatar Stephen M. Cameron Committed by James Bottomley

[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: default avatarStephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 5767a1c4
...@@ -314,9 +314,9 @@ static ssize_t host_show_commands_outstanding(struct device *dev, ...@@ -314,9 +314,9 @@ static ssize_t host_show_commands_outstanding(struct device *dev,
} }
/* Enqueuing and dequeuing functions for cmdlists. */ /* Enqueuing and dequeuing functions for cmdlists. */
static inline void addQ(struct hlist_head *list, struct CommandList *c) static inline void addQ(struct list_head *list, struct CommandList *c)
{ {
hlist_add_head(&c->list, list); list_add_tail(&c->list, list);
} }
static inline u32 next_command(struct ctlr_info *h) static inline u32 next_command(struct ctlr_info *h)
...@@ -366,9 +366,9 @@ static void enqueue_cmd_and_start_io(struct ctlr_info *h, ...@@ -366,9 +366,9 @@ static void enqueue_cmd_and_start_io(struct ctlr_info *h,
static inline void removeQ(struct CommandList *c) static inline void removeQ(struct CommandList *c)
{ {
if (WARN_ON(hlist_unhashed(&c->list))) if (WARN_ON(list_empty(&c->list)))
return; return;
hlist_del_init(&c->list); list_del_init(&c->list);
} }
static inline int is_hba_lunid(unsigned char scsi3addr[]) static inline int is_hba_lunid(unsigned char scsi3addr[])
...@@ -2228,7 +2228,7 @@ static struct CommandList *cmd_alloc(struct ctlr_info *h) ...@@ -2228,7 +2228,7 @@ static struct CommandList *cmd_alloc(struct ctlr_info *h)
c->cmdindex = i; c->cmdindex = i;
INIT_HLIST_NODE(&c->list); INIT_LIST_HEAD(&c->list);
c->busaddr = (u32) cmd_dma_handle; c->busaddr = (u32) cmd_dma_handle;
temp64.val = (u64) err_dma_handle; temp64.val = (u64) err_dma_handle;
c->ErrDesc.Addr.lower = temp64.val32.lower; c->ErrDesc.Addr.lower = temp64.val32.lower;
...@@ -2266,7 +2266,7 @@ static struct CommandList *cmd_special_alloc(struct ctlr_info *h) ...@@ -2266,7 +2266,7 @@ static struct CommandList *cmd_special_alloc(struct ctlr_info *h)
} }
memset(c->err_info, 0, sizeof(*c->err_info)); memset(c->err_info, 0, sizeof(*c->err_info));
INIT_HLIST_NODE(&c->list); INIT_LIST_HEAD(&c->list);
c->busaddr = (u32) cmd_dma_handle; c->busaddr = (u32) cmd_dma_handle;
temp64.val = (u64) err_dma_handle; temp64.val = (u64) err_dma_handle;
c->ErrDesc.Addr.lower = temp64.val32.lower; c->ErrDesc.Addr.lower = temp64.val32.lower;
...@@ -2837,8 +2837,8 @@ static void start_io(struct ctlr_info *h) ...@@ -2837,8 +2837,8 @@ static void start_io(struct ctlr_info *h)
{ {
struct CommandList *c; struct CommandList *c;
while (!hlist_empty(&h->reqQ)) { while (!list_empty(&h->reqQ)) {
c = hlist_entry(h->reqQ.first, struct CommandList, list); c = list_entry(h->reqQ.next, struct CommandList, list);
/* can't do anything if fifo is full */ /* can't do anything if fifo is full */
if ((h->access.fifo_full(h))) { if ((h->access.fifo_full(h))) {
dev_warn(&h->pdev->dev, "fifo full\n"); dev_warn(&h->pdev->dev, "fifo full\n");
...@@ -2929,10 +2929,9 @@ static inline u32 process_nonindexed_cmd(struct ctlr_info *h, ...@@ -2929,10 +2929,9 @@ static inline u32 process_nonindexed_cmd(struct ctlr_info *h,
{ {
u32 tag; u32 tag;
struct CommandList *c = NULL; struct CommandList *c = NULL;
struct hlist_node *tmp;
tag = hpsa_tag_discard_error_bits(raw_tag); tag = hpsa_tag_discard_error_bits(raw_tag);
hlist_for_each_entry(c, tmp, &h->cmpQ, list) { list_for_each_entry(c, &h->cmpQ, list) {
if ((c->busaddr & 0xFFFFFFE0) == (tag & 0xFFFFFFE0)) { if ((c->busaddr & 0xFFFFFFE0) == (tag & 0xFFFFFFE0)) {
finish_cmd(c, raw_tag); finish_cmd(c, raw_tag);
return next_command(h); return next_command(h);
...@@ -3761,8 +3760,8 @@ static int __devinit hpsa_init_one(struct pci_dev *pdev, ...@@ -3761,8 +3760,8 @@ static int __devinit hpsa_init_one(struct pci_dev *pdev,
h->pdev = pdev; h->pdev = pdev;
h->busy_initializing = 1; h->busy_initializing = 1;
INIT_HLIST_HEAD(&h->cmpQ); INIT_LIST_HEAD(&h->cmpQ);
INIT_HLIST_HEAD(&h->reqQ); INIT_LIST_HEAD(&h->reqQ);
spin_lock_init(&h->lock); spin_lock_init(&h->lock);
spin_lock_init(&h->scan_lock); spin_lock_init(&h->scan_lock);
rc = hpsa_pci_init(h); rc = hpsa_pci_init(h);
......
...@@ -75,8 +75,8 @@ struct ctlr_info { ...@@ -75,8 +75,8 @@ struct ctlr_info {
struct access_method access; struct access_method access;
/* queue and queue Info */ /* queue and queue Info */
struct hlist_head reqQ; struct list_head reqQ;
struct hlist_head cmpQ; struct list_head cmpQ;
unsigned int Qdepth; unsigned int Qdepth;
unsigned int maxQsinceinit; unsigned int maxQsinceinit;
unsigned int maxSG; unsigned int maxSG;
......
...@@ -292,7 +292,7 @@ struct CommandList { ...@@ -292,7 +292,7 @@ struct CommandList {
struct ctlr_info *h; struct ctlr_info *h;
int cmd_type; int cmd_type;
long cmdindex; long cmdindex;
struct hlist_node list; struct list_head list;
struct request *rq; struct request *rq;
struct completion *waiting; struct completion *waiting;
void *scsi_cmd; void *scsi_cmd;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment