From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: 2.6.37 PV on HVM and emul_unplug=unnecessary Date: Wed, 12 Jan 2011 14:04:57 +0100 Message-ID: <4D2DA6F9.6090100@redhat.com> References: <179F0F4F586F923A4B074564@nimrod.local> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <179F0F4F586F923A4B074564@nimrod.local> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Alex Bligh Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org On 01/12/2011 12:45 PM, Alex Bligh wrote: > On modern mainline, when a PV on HVM kernel boots, it will detect the > ability to PCI unplug the PCI SD devices, so to avoid producing > /dev/xvdX and /dev/sdX referring to the same device. On Xen Dom0 prior > to 3.4.something, this fails because PCI unplug is not supported. > The check can be worked around by using emulunplug=unnecessary, but > this is not optimal as > a) you still end up with 2 devices; and > b) it requires modifying the kernel boot line, which is not always > easy (e.g. if your bootloader is supplied by a third party IAAS > provider and you wish to use a mainline kernel). > > Another approach would be to stop sd_mod loading another way > (e.g. blacklist sd_mod). This does not work well as many kernels have > sd_mod built in. > > I am trying to think of a non-intrusive way to prevent sd_mod initialising > if we are doing PV on HVM and PCI unplug is not supported (other than > upgrade Xen). One possibility would be to manually register dummy > block major device with the same major number as used by sd. This would > cause register_blkdev to return EBUSY and the module not to init. However, > it would leave the dummy block device around. On Windows it is possible to add a "filter driver" above the PCI and IDE buses and hide the emulated devices this way. It doesn't leave a dummy disk, but it does leave a dummy device in the PCI tree. It's a kind of kernel-level blacklist. Also, it couldn't be an external module if sd_mod is built in, which makes it much less interesting. > Has someone already looked into this and concluded it's impossible? Or > is this worth a little time? Something similar was done in the 2.6.18 "XenoLinux" kernels, but it's ugly and it touches into areas of the kernell that Xen support shouldn't affect. If your "Xen Dom0 prior to 3.4.something" is RHEL/CentOS, the 5.6 version will include a backport of PCI unplug support. Then you only need to bug your cloud provider. :) Paolo