From: Jan Glauber Date: Thu, 25 Nov 2010 08:52:46 +0000 (+0100) Subject: [S390] qdio: free indicator after reset is finished X-Git-Tag: v3.0~2726^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4814a2b3c603438ed8c330c74b49aa662b1ede43;p=platform%2Fkernel%2Flinux-amlogic.git [S390] qdio: free indicator after reset is finished The qdio device indicator is freed before the device is notified that the indicator is reset. This sequence contains a race when the freed indicator is used by a new device while the reset of the indicator is still pending. Do the reset operation before freeing the indicator to avoid that potential race. Signed-off-by: Jan Glauber Signed-off-by: Martin Schwidefsky --- diff --git a/drivers/s390/cio/qdio_thinint.c b/drivers/s390/cio/qdio_thinint.c index 752dbee..5d9c666 100644 --- a/drivers/s390/cio/qdio_thinint.c +++ b/drivers/s390/cio/qdio_thinint.c @@ -292,8 +292,8 @@ void qdio_shutdown_thinint(struct qdio_irq *irq_ptr) return; /* reset adapter interrupt indicators */ - put_indicator(irq_ptr->dsci); set_subchannel_ind(irq_ptr, 1); + put_indicator(irq_ptr->dsci); } void __exit tiqdio_unregister_thinints(void)