]> git.itanic.dy.fi Git - linux-stable/commitdiff
s390/dasd: fix list corruption for sleep_on requests
authorStefan Haberland <stefan.haberland@de.ibm.com>
Mon, 24 Nov 2014 09:59:44 +0000 (10:59 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Fri, 28 Nov 2014 08:47:36 +0000 (09:47 +0100)
Fix race for sleep_on requests leading to list corruption.
The SLEEP_ON_END_TAG is set during CQR clean up. Remove it from
interrupt handler to avoid the CQR from being cleared when it is
still in the device_queue.

Signed-off-by: Stefan Haberland <stefan.haberland@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/block/dasd.c

index 8cb120e9c8681a9ca4d91b67fc021b24984339d4..4abf11965484b1e17efef10e44f650293687d816 100644 (file)
@@ -1697,11 +1697,8 @@ void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
        if (cqr->status == DASD_CQR_CLEAR_PENDING &&
            scsw_fctl(&irb->scsw) & SCSW_FCTL_CLEAR_FUNC) {
                cqr->status = DASD_CQR_CLEARED;
-               if (cqr->callback_data == DASD_SLEEPON_START_TAG)
-                       cqr->callback_data = DASD_SLEEPON_END_TAG;
                dasd_device_clear_timer(device);
                wake_up(&dasd_flush_wq);
-               wake_up(&generic_waitq);
                dasd_schedule_device_bh(device);
                return;
        }