linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* xen-blkfront: Don't send closing  notification to backend in blkfront_closing()
@ 2011-07-08  7:14 Joe Jin
  2011-07-08 16:04 ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 7+ messages in thread
From: Joe Jin @ 2011-07-08  7:14 UTC (permalink / raw)
  To: Daniel Stodden, Jens Axboe, annie.li, Jeremy Fitzhardinge,
	Ian Campbell, Konrad Rzeszutek Wilk, Kurt C Hackel, Greg Marsden
  Cc: xen-devel@lists.xensource.com, linux-kernel@vger.kernel.org

When we do block attach detach test with below steps, umount hang and the
guest unable to shutdown:

1. start guest with the latest kernel.
2. attach new disk by xm-attach in Dom0
3. mount new disk in guest
4. detach the disk by xm-detach in dom0
5. umount the partition/disk in guest, command hung. exactly at here, any
   IO request to the partition/disk will hang.

Checking the code we found when xm-detach command set backend state to 
Closing, will trigger blkback_changed() -> blkfront_closing() call.
At the moment, the disk still opened by guest, so frontend will refuse the 
request, but in the blkfront_closing(), it send a notification to backend 
said that the frontend state switched to Closing, when backend got the
event, it will disconnect from real device, at here any IO request will
be stuck, even tried to release the disk by umount.

Per our test, below patch fix this issue.

Signed-off-by: Joe Jin <joe.jin@oracle.com>
Signed-off-by: Annie Li <annie.li@oracle.com>
---
 xen-blkfront.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
index b536a9c..f6d8ac2 100644
--- a/drivers/block/xen-blkfront.c
+++ b/drivers/block/xen-blkfront.c
@@ -1088,7 +1088,7 @@ blkfront_closing(struct blkfront_info *info)
 	if (bdev->bd_openers) {
 		xenbus_dev_error(xbdev, -EBUSY,
 				 "Device in use; refusing to close");
-		xenbus_switch_state(xbdev, XenbusStateClosing);
+		xbdev->state = XenbusStateClosing;
 	} else {
 		xlvbd_release_gendisk(info);
 		xenbus_frontend_closed(xbdev);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-07-12 15:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-08  7:14 xen-blkfront: Don't send closing notification to backend in blkfront_closing() Joe Jin
2011-07-08 16:04 ` Konrad Rzeszutek Wilk
2011-07-09  0:26   ` Joe Jin
2011-07-09 13:11     ` Konrad Rzeszutek Wilk
2011-07-11  7:53       ` Joe Jin
2011-07-12  3:31       ` Joe Jin
2011-07-12 15:04         ` Konrad Rzeszutek Wilk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).