Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752790AbdIFKSJ (ORCPT ); Wed, 6 Sep 2017 06:18:09 -0400 Received: from mx2.suse.de ([195.135.220.15]:33582 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752485AbdIFKSG (ORCPT ); Wed, 6 Sep 2017 06:18:06 -0400 Subject: Re: [Xen-devel] [PATCH] xen-blkfront: emit KOBJ_OFFLINE uevent when detaching device To: Vincent Legout , =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Cc: Jan Beulich , xen-devel@lists.xenproject.org, Boris Ostrovsky , linux-kernel@vger.kernel.org References: <20170704114823.pvk6323gfebioikl@bres.gandi.net> <20170704165927.c6dgitftm4v3xk7w@dhcp-3-128.uk.xensource.com> <20170705080804.j6lptyhmjguhdj47@bres.gandi.net> <595CBCB40200007800168A16@prv-mh.provo.novell.com> <20170705123715.exc4qyllpxatxpnj@bres.gandi.net> <595CFD650200007800168BF1@prv-mh.provo.novell.com> <20170705133000.ugnbckhul4xevzk5@bres.gandi.net> <20170707081053.s6pocjgz3ibkkyjg@dhcp-3-128.uk.xensource.com> <20170905072849.mymaugf3im2luqai@bres.gandi.net> From: Juergen Gross Message-ID: <9e39fe02-d1ca-7b72-7bd3-3461b94c618d@suse.com> Date: Wed, 6 Sep 2017 12:18:03 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <20170905072849.mymaugf3im2luqai@bres.gandi.net> Content-Type: text/plain; charset=windows-1252 Content-Language: de-DE Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2279 Lines: 55 On 05/09/17 09:28, Vincent Legout wrote: > Hello, > > Sorry for such a long delay. I'm still interested in having this patch > merged. > > I've tried to make the patch more generic and move it to xenbus as > discussed during the Xen summit, but I'm not sure how or if it's > possible. Would doing something in xenbus_otherend_changed() make sense? > But do we have enough information there? I'd be happy to get any advice, > I've re-attached the original patch. Maybe you could add a callback to struct xenbus_driver which is called by xenbus_otherend_changed() if available and which will return the missing information (e.g. the kobj). Juergen > > On Fri, Jul 07, 2017 at 09:10:53AM +0100, Roger Pau Monn? wrote : >> On Wed, Jul 05, 2017 at 03:30:00PM +0200, Vincent Legout wrote: >>> On Wed, Jul 05, 2017 at 06:53:25AM -0600, Jan Beulich wrote : >>>>>>> On 05.07.17 at 14:37, wrote: >>>>> On Wed, Jul 05, 2017 at 02:17:24AM -0600, Jan Beulich wrote : >>>>>>>>> On 05.07.17 at 10:08, wrote: >>>>>>> Without the patch, blkif_release and xlvbd_release_gendisk are never >>>>>>> called, and no call to blk_unregister_queue is made. >>>>>> >>>>>> But isn't that what needs to be fixed then? The device should be >>>>>> removed once its last user goes away (which would be at the time >>>>>> the umount is eventually done aiui). >>>>> >>>>> You mean that block-detach should fail if the device is still mounted? >>>>> or find a way to wait until all the users are gone? >>>>> >>>>> I don't say that's not what should be done, but that's not what I get. >>>>> The device is removed after a block-detach, even if still mounted. So >>>>> the system is left in an unstable state without the patch. >>>> >>>> Unstable? I'd expect subsequent I/O to fail for that device, yes, but >>>> that's still a stable system. Are you observing anything else? >>> >>> Yes, that's what I meant by unstable, nothing else. Sorry for the >>> confusion. >> >> IMHO, this should behave in the same exact way as hot-unplugging a USB >> drive that's mounted, can you confirm that's correct? > > I agree. And if I'm not wrong, it currently doesn't behave the same as > USB device unplugging. The patch tries to fix that. > > Thanks, > Vincent >