]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
scsi: libsas: add event to defer list tail instead of head when draining
authorchenxiang <chenxiang66@hisilicon.com>
Wed, 6 Sep 2017 09:15:14 +0000 (17:15 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Sat, 16 Sep 2017 01:38:30 +0000 (21:38 -0400)
Events will be added to defer_q list when setting ha->status to
SAS_HA_DRAINING. Events will be called after drain workqueue.

Those events are added to the head of list, but they are scanned one by
one from the head to the tail, which will cause those events be called
in the reverse order of being added. So change list_add to list_add_tail
in function sas_queue_work.

Signed-off-by: chenxiang <chenxiang66@hisilicon.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
CC: John Garry <john.garry@huawei.com>
CC: Johannes Thumshirn <jthumshirn@suse.de>
CC: Ewan Milne <emilne@redhat.com>
CC: Christoph Hellwig <hch@lst.de>
CC: Tomas Henzl <thenzl@redhat.com>
CC: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/libsas/sas_event.c

index 3e225ef9e0e5963b7db2ced857eee792d60ed9aa..0bb9eefc08c86a3a67329956b6c4627678255915 100644 (file)
@@ -37,7 +37,7 @@ int sas_queue_work(struct sas_ha_struct *ha, struct sas_work *sw)
        if (test_bit(SAS_HA_DRAINING, &ha->state)) {
                /* add it to the defer list, if not already pending */
                if (list_empty(&sw->drain_node))
-                       list_add(&sw->drain_node, &ha->defer_q);
+                       list_add_tail(&sw->drain_node, &ha->defer_q);
        } else
                rc = scsi_queue_work(ha->core.shost, &sw->work);