All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [Xend] Fix HVM PCI hot removal failure
@ 2009-04-28  7:34 Zhai, Edwin
  2009-04-28  7:52 ` Keir Fraser
  0 siblings, 1 reply; 15+ messages in thread
From: Zhai, Edwin @ 2009-04-28  7:34 UTC (permalink / raw)
  To: Xen Developers; +Cc: Zhai, Edwin

[-- Attachment #1: Type: text/plain, Size: 162 bytes --]

Fix a bug of HVM PCI hot removal failure introduced in r19573.
xend's deassign_device should not be called for HVM, as qemu already do so.

-- 
best rgds,
edwin


[-- Attachment #2: pci_hot_removal_fix.patch --]
[-- Type: text/plain, Size: 1240 bytes --]

Index: hv/tools/python/xen/xend/server/pciif.py
===================================================================
--- hv.orig/tools/python/xen/xend/server/pciif.py
+++ hv/tools/python/xen/xend/server/pciif.py
@@ -493,12 +493,14 @@ class PciController(DevController):
         # DMA transaction, etc
         dev.do_FLR()
 
-        pci_str = "0x%x, 0x%x, 0x%x, 0x%x" % (domain, bus, slot, func)
-        bdf = xc.deassign_device(fe_domid, pci_str)
-        if bdf > 0:
-            raise VmError("Failed to deassign device from IOMMU (%x:%x.%x)"
-                          % (bus, slot, func))
-        log.debug("pci: Deassign device %x:%x.%x" % (bus, slot, func))
+        # qemu would do following in case of HVM
+        if not self.vm.info.is_hvm():
+            pci_str = "0x%x, 0x%x, 0x%x, 0x%x" % (domain, bus, slot, func)
+            bdf = xc.deassign_device(fe_domid, pci_str)
+            if bdf > 0:
+                raise VmError("Failed to deassign device from IOMMU (%x:%x.%x)"
+                              % (bus, slot, func))
+            log.debug("pci: Deassign device %x:%x.%x" % (bus, slot, func))
 
         for (start, size) in dev.ioports:
             log.debug('pci: disabling ioport 0x%x/0x%x'%(start,size))

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  7:34 [PATCH] [Xend] Fix HVM PCI hot removal failure Zhai, Edwin
@ 2009-04-28  7:52 ` Keir Fraser
  2009-04-28  8:18   ` Zhai, Edwin
  0 siblings, 1 reply; 15+ messages in thread
From: Keir Fraser @ 2009-04-28  7:52 UTC (permalink / raw)
  To: Zhai, Edwin, Xen Developers; +Cc: Yuji Shimada, Ian Jackson

I think Yuji has a patch pending for qemu, not yet applied by Ian. That
should fix this issue for -rc3.

 -- Keir

On 28/04/2009 08:34, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:

> Fix a bug of HVM PCI hot removal failure introduced in r19573.
> xend's deassign_device should not be called for HVM, as qemu already do so.

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  7:52 ` Keir Fraser
@ 2009-04-28  8:18   ` Zhai, Edwin
  2009-04-28  9:17     ` Keir Fraser
  0 siblings, 1 reply; 15+ messages in thread
From: Zhai, Edwin @ 2009-04-28  8:18 UTC (permalink / raw)
  To: Keir Fraser; +Cc: Yuji Shimada, Xen Developers, Ian Jackson

Sorry, I neglected this patch:(

Do we have plan to improve the coexistence of qemu and xen?
You know, sometimes 2 coupled repos make debug difficult given that qemu 
has more and more features(hotplug, power). How about adding a bridge 
between qemu's git and xen's hg, so that all the changes can be tracked 
easily.

Thanks,



Keir Fraser wrote:
> I think Yuji has a patch pending for qemu, not yet applied by Ian. That
> should fix this issue for -rc3.
>
>  -- Keir
>
> On 28/04/2009 08:34, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:
>
>   
>> Fix a bug of HVM PCI hot removal failure introduced in r19573.
>> xend's deassign_device should not be called for HVM, as qemu already do so.
>>     
>
>
>   

-- 
best rgds,
edwin

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  8:18   ` Zhai, Edwin
@ 2009-04-28  9:17     ` Keir Fraser
  2009-04-28  9:33       ` Zhai, Edwin
  0 siblings, 1 reply; 15+ messages in thread
From: Keir Fraser @ 2009-04-28  9:17 UTC (permalink / raw)
  To: Zhai, Edwin; +Cc: Yuji Shimada, Xen Developers, Ian Jackson

On 28/04/2009 09:18, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:

> Sorry, I neglected this patch:(
> 
> Do we have plan to improve the coexistence of qemu and xen?
> You know, sometimes 2 coupled repos make debug difficult given that qemu
> has more and more features(hotplug, power). How about adding a bridge
> between qemu's git and xen's hg, so that all the changes can be tracked
> easily.

How might that work?

 -- Keir

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  9:17     ` Keir Fraser
@ 2009-04-28  9:33       ` Zhai, Edwin
  2009-04-28 10:38         ` Stefano Stabellini
  2009-04-28 12:17         ` [PATCH] [Xend] Fix HVM PCI hot removal failure Keir Fraser
  0 siblings, 2 replies; 15+ messages in thread
From: Zhai, Edwin @ 2009-04-28  9:33 UTC (permalink / raw)
  To: Keir Fraser; +Cc: Yuji Shimada, Xen Developers, Ian Jackson, Zhai, Edwin



Keir Fraser wrote:
>  On 28/04/2009 09:18, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:
>
> > Sorry, I neglected this patch:(
> >
> > Do we have plan to improve the coexistence of qemu and xen?
> > You know, sometimes 2 coupled repos make debug difficult given that qemu
> > has more and more features(hotplug, power). How about adding a bridge
> > between qemu's git and xen's hg, so that all the changes can be tracked
> > easily.
>
>  How might that work?

Just my thoughts, not sure if it's workable:)
* Ian maintains his git repo background, other developers just see a
  hg repo including qemu
* Keep sync between git qemu and hg qemu:
  1. Any patches including qemu changes go into git repo
automatically. Can scripts do this?
  2. When rebase qemu, Ian generate a big patch against previous git
repo, then push it back to hg repo.

I have no idea of current qemu rebase process, not sure if any extra
work load needed. Ian can comment.

Thanks,


>
>  -- Keir
>
>

-- 
best rgds,
edwin

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  9:33       ` Zhai, Edwin
@ 2009-04-28 10:38         ` Stefano Stabellini
  2009-04-29 15:41           ` Repositories and build system Ian Jackson
  2009-04-28 12:17         ` [PATCH] [Xend] Fix HVM PCI hot removal failure Keir Fraser
  1 sibling, 1 reply; 15+ messages in thread
From: Stefano Stabellini @ 2009-04-28 10:38 UTC (permalink / raw)
  To: Zhai, Edwin; +Cc: Yuji Shimada, Xen Developers, Ian Jackson, Keir Fraser

Zhai, Edwin wrote:

> 
> Keir Fraser wrote:
>>  On 28/04/2009 09:18, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:
>>
>>> Sorry, I neglected this patch:(
>>>
>>> Do we have plan to improve the coexistence of qemu and xen?
>>> You know, sometimes 2 coupled repos make debug difficult given that qemu
>>> has more and more features(hotplug, power). How about adding a bridge
>>> between qemu's git and xen's hg, so that all the changes can be tracked
>>> easily.
>>  How might that work?
> 
> Just my thoughts, not sure if it's workable:)
> * Ian maintains his git repo background, other developers just see a
>   hg repo including qemu
> * Keep sync between git qemu and hg qemu:
>   1. Any patches including qemu changes go into git repo
> automatically. Can scripts do this?
>   2. When rebase qemu, Ian generate a big patch against previous git
> repo, then push it back to hg repo.
> 
> I have no idea of current qemu rebase process, not sure if any extra
> work load needed. Ian can comment.
> 

A two way synchronization between the qemu hg mirror and the qemu git
repo would mean trouble.

Maybe we could find a way to mirror the qemu git repo inside the
xen-unstable hg repo, but it would still just a mirror.

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

* Re: [PATCH] [Xend] Fix HVM PCI hot removal failure
  2009-04-28  9:33       ` Zhai, Edwin
  2009-04-28 10:38         ` Stefano Stabellini
@ 2009-04-28 12:17         ` Keir Fraser
  1 sibling, 0 replies; 15+ messages in thread
From: Keir Fraser @ 2009-04-28 12:17 UTC (permalink / raw)
  To: Zhai, Edwin; +Cc: Yuji Shimada, Xen Developers, Ian Jackson

On 28/04/2009 10:33, "Zhai, Edwin" <edwin.zhai@intel.com> wrote:

> Just my thoughts, not sure if it's workable:)
> * Ian maintains his git repo background, other developers just see a
>   hg repo including qemu
> * Keep sync between git qemu and hg qemu:
>   1. Any patches including qemu changes go into git repo
> automatically. Can scripts do this?
>   2. When rebase qemu, Ian generate a big patch against previous git
> repo, then push it back to hg repo.
> 
> I have no idea of current qemu rebase process, not sure if any extra
> work load needed. Ian can comment.

It'd be more convenient for everyone but Ian. :-D It does seem that
consistency between Xen and qemu is going to be an ongoing issue though,
since I don't think refactoring of all pci passthru stuff is done yet.

 -- Keir

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

* Repositories and build system
  2009-04-28 10:38         ` Stefano Stabellini
@ 2009-04-29 15:41           ` Ian Jackson
  2009-04-29 16:38             ` Dan Magenheimer
  0 siblings, 1 reply; 15+ messages in thread
From: Ian Jackson @ 2009-04-29 15:41 UTC (permalink / raw)
  To: Stefano Stabellini; +Cc: Yuji Shimada, Xen Developers, Keir Fraser, Zhai, Edwin

Stefano Stabellini writes ("Re: [Xen-devel] [PATCH] [Xend] Fix HVM PCI hot removal failure"):
> A two way synchronization between the qemu hg mirror and the qemu git
> repo would mean trouble.
> 
> Maybe we could find a way to mirror the qemu git repo inside the
> xen-unstable hg repo, but it would still just a mirror.

I agree that the current situation isn't ideal.  I had hoped that we
could avoid constantly making changes that introduce cross-repository
incompatibilities but it seems to be too difficult to do that.  We
keep introducing new lockstep changes.

Stefano's idea of mirroring the qemu git repo inside the xen-unstable
hg repo would be one approach.  It could probably be done, although it
would be a novel arrangement.

I think a better thing to try would be to make it easier for people to
pull and update all of the sub-repos at once.  It's not just qemu - we
have linux (which is in at least two major branches: 2.6.18 and pvops)
and now some of the Ocaml work too.  Perhaps it's time to create a
meta-component which permits `make pull', `make world', etc. ?

Ian.

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

* RE: Repositories and build system
  2009-04-29 15:41           ` Repositories and build system Ian Jackson
@ 2009-04-29 16:38             ` Dan Magenheimer
  2009-04-29 16:56               ` Ian Jackson
  0 siblings, 1 reply; 15+ messages in thread
From: Dan Magenheimer @ 2009-04-29 16:38 UTC (permalink / raw)
  To: Ian Jackson, Stefano Stabellini
  Cc: Yuji Shimada, Xen Developers, Keir Fraser, Zhai, Edwin

A few thoughts:

I fear that the real issue is that knowledge of the
locksteps are hidden in people's brains, or at best
in cryptic comments in some sub-repos.  For any
solution to work, this knowledge needs to be made
available, at least in human-readable format and
preferably (or perhaps additionally) in machine-parseable
format.

The problem is that each developer is working on a
different component and has little interest in the
other components other than to ensure they don't
break "the component I care about".  (And sometimes
a developer cares about two or more components...
and may become the "lockstep culprit".)  Furthermore,
there are sometimes "partial locksteps", where
say, a new qemu is required beyond this changeset
in Xen, but only if you are using stub domains.

Generally, I think the idea of a meta-pull and
meta-make are good (and maybe a meta-install?),
but in order to be useful, they need to work not
only on "latest" but older branches of components
as well.  For example:

"Pull and build all latest known stable components
that work with xen-unstable changeset 19314"

Without the "lockstep database", this is impossible.
And without this functionality, binary searching
for a problem is also impossible.

> -----Original Message-----
> From: Ian Jackson [mailto:Ian.Jackson@eu.citrix.com]
> Sent: Wednesday, April 29, 2009 9:42 AM
> To: Stefano Stabellini
> Cc: Yuji Shimada; Xen Developers; Keir Fraser; Zhai, Edwin
> Subject: [Xen-devel] Repositories and build system
> 
> 
> Stefano Stabellini writes ("Re: [Xen-devel] [PATCH] [Xend] 
> Fix HVM PCI hot removal failure"):
> > A two way synchronization between the qemu hg mirror and 
> the qemu git
> > repo would mean trouble.
> > 
> > Maybe we could find a way to mirror the qemu git repo inside the
> > xen-unstable hg repo, but it would still just a mirror.
> 
> I agree that the current situation isn't ideal.  I had hoped that we
> could avoid constantly making changes that introduce cross-repository
> incompatibilities but it seems to be too difficult to do that.  We
> keep introducing new lockstep changes.
> 
> Stefano's idea of mirroring the qemu git repo inside the xen-unstable
> hg repo would be one approach.  It could probably be done, although it
> would be a novel arrangement.
> 
> I think a better thing to try would be to make it easier for people to
> pull and update all of the sub-repos at once.  It's not just qemu - we
> have linux (which is in at least two major branches: 2.6.18 and pvops)
> and now some of the Ocaml work too.  Perhaps it's time to create a
> meta-component which permits `make pull', `make world', etc. ?
> 
> Ian.
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

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

* RE: Repositories and build system
  2009-04-29 16:38             ` Dan Magenheimer
@ 2009-04-29 16:56               ` Ian Jackson
  2009-04-29 17:40                 ` Dan Magenheimer
  0 siblings, 1 reply; 15+ messages in thread
From: Ian Jackson @ 2009-04-29 16:56 UTC (permalink / raw)
  To: Dan Magenheimer
  Cc: Yuji Shimada, Xen Developers, Keir Fraser, Zhai, Edwin,
	Stefano Stabellini

Dan Magenheimer writes ("RE: [Xen-devel] Repositories and build system"):
> Generally, I think the idea of a meta-pull and
> meta-make are good (and maybe a meta-install?),
> but in order to be useful, they need to work not
> only on "latest" but older branches of components
> as well.  For example:

I would expect that `make pull' would pull from whatever branch you
checked out.  So if you had checked out xen-unstable, `make pull'
would pull Xen and dom0 and qemu and ocaml etc.

The result would be that if you pulled you'd necessarily get a new set
of compatible stuff, just as if it had been in a single tree and you'd
pulled that.

> "Pull and build all latest known stable components
> that work with xen-unstable changeset 19314"

That would require formal, machine-readable tracking of the
inter-version dependencies.  Since at the moment we can't reliably
accidentally avoid introducing cross-version breakage I don't think we
can reliably avoid buggy metadata either.

Ian.

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

* RE: Repositories and build system
  2009-04-29 16:56               ` Ian Jackson
@ 2009-04-29 17:40                 ` Dan Magenheimer
  2009-04-29 18:06                   ` Keir Fraser
  2009-05-07 16:51                   ` Stefano Stabellini
  0 siblings, 2 replies; 15+ messages in thread
From: Dan Magenheimer @ 2009-04-29 17:40 UTC (permalink / raw)
  To: Ian Jackson
  Cc: Yuji Shimada, Xen Developers, Keir Fraser, Zhai, Edwin,
	Stefano Stabellini

> > "Pull and build all latest known stable components
> > that work with xen-unstable changeset 19314"
> 
> That would require formal, machine-readable tracking of the
> inter-version dependencies.  Since at the moment we can't reliably
> accidentally avoid introducing cross-version breakage I don't think we
> can reliably avoid buggy metadata either.

Understood.  But it is a big loss to be unable to do a bisect
search for a bug.  With the proliferation of repositories
and components, it may become necessary to impose some discipline
to avoid the introduction of (undocumented) locksteps.

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

* Re: Repositories and build system
  2009-04-29 17:40                 ` Dan Magenheimer
@ 2009-04-29 18:06                   ` Keir Fraser
  2009-05-07 16:51                   ` Stefano Stabellini
  1 sibling, 0 replies; 15+ messages in thread
From: Keir Fraser @ 2009-04-29 18:06 UTC (permalink / raw)
  To: Dan Magenheimer, Ian Jackson
  Cc: Yuji Shimada, Xen Developers, Zhai, Edwin, Stefano Stabellini

On 29/04/2009 18:40, "Dan Magenheimer" <dan.magenheimer@oracle.com> wrote:

>> That would require formal, machine-readable tracking of the
>> inter-version dependencies.  Since at the moment we can't reliably
>> accidentally avoid introducing cross-version breakage I don't think we
>> can reliably avoid buggy metadata either.
> 
> Understood.  But it is a big loss to be unable to do a bisect
> search for a bug.  With the proliferation of repositories
> and components, it may become necessary to impose some discipline
> to avoid the introduction of (undocumented) locksteps.

Fixing the interface between qemu and xen repos would be nice. Perhaps we
could do that for all but device passthru (which I think was all that broke
in this case). Passthru is still the main thing that is churning at a
furious rate (and sensibly so imo since I think some bits of logic are still
in the wrong places, and some interfaces are probably still not great).

 -- Keir

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

* Re: Repositories and build system
  2009-04-29 17:40                 ` Dan Magenheimer
  2009-04-29 18:06                   ` Keir Fraser
@ 2009-05-07 16:51                   ` Stefano Stabellini
  2009-05-07 17:00                     ` Brendan Cully
  1 sibling, 1 reply; 15+ messages in thread
From: Stefano Stabellini @ 2009-05-07 16:51 UTC (permalink / raw)
  To: Dan Magenheimer
  Cc: Yuji Shimada, Xen Developers, Ian Jackson, Keir Fraser, Zhai, Edwin

Dan Magenheimer wrote:

>>> "Pull and build all latest known stable components
>>> that work with xen-unstable changeset 19314"
>> That would require formal, machine-readable tracking of the
>> inter-version dependencies.  Since at the moment we can't reliably
>> accidentally avoid introducing cross-version breakage I don't think we
>> can reliably avoid buggy metadata either.
> 
> Understood.  But it is a big loss to be unable to do a bisect
> search for a bug.  With the proliferation of repositories
> and components, it may become necessary to impose some discipline
> to avoid the introduction of (undocumented) locksteps.
> 


I agree.
In fact I think we should start to write in clear letters when a commit
breaks xen\qemu compatibility, specifying the required changeset in the
other repository.
We could formally introduce this practice with the 3.5 development cycle.

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

* Re: Repositories and build system
  2009-05-07 16:51                   ` Stefano Stabellini
@ 2009-05-07 17:00                     ` Brendan Cully
  2009-05-07 18:17                       ` Keir Fraser
  0 siblings, 1 reply; 15+ messages in thread
From: Brendan Cully @ 2009-05-07 17:00 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Yuji Shimada, Dan Magenheimer, Xen Developers, Zhai, Edwin,
	Ian Jackson, Keir Fraser

On Thursday, 07 May 2009 at 17:51, Stefano Stabellini wrote:
> Dan Magenheimer wrote:
> 
> >>> "Pull and build all latest known stable components
> >>> that work with xen-unstable changeset 19314"
> >> That would require formal, machine-readable tracking of the
> >> inter-version dependencies.  Since at the moment we can't reliably
> >> accidentally avoid introducing cross-version breakage I don't think we
> >> can reliably avoid buggy metadata either.
> > 
> > Understood.  But it is a big loss to be unable to do a bisect
> > search for a bug.  With the proliferation of repositories
> > and components, it may become necessary to impose some discipline
> > to avoid the introduction of (undocumented) locksteps.
> > 
> 
> 
> I agree.
> In fact I think we should start to write in clear letters when a commit
> breaks xen\qemu compatibility, specifying the required changeset in the
> other repository.
> We could formally introduce this practice with the 3.5 development cycle.

This would certainly be an improvement, but it depends on the
developer always knowing and recording exactly what synchronization is
needed. This doesn't quite jibe with bisect, whose raison d'etre is to
help find problems that went unnoticed for potentially long periods of
time. Even when the hints work, bisection is still quite painful
across two repositories in two different version control systems.

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

* Re: Repositories and build system
  2009-05-07 17:00                     ` Brendan Cully
@ 2009-05-07 18:17                       ` Keir Fraser
  0 siblings, 0 replies; 15+ messages in thread
From: Keir Fraser @ 2009-05-07 18:17 UTC (permalink / raw)
  To: Brendan Cully, Stefano Stabellini
  Cc: Yuji Shimada, Dan Magenheimer, Xen Developers, Ian Jackson, Zhai, Edwin

On 07/05/2009 18:00, "Brendan Cully" <brendan@cs.ubc.ca> wrote:

>> I agree.
>> In fact I think we should start to write in clear letters when a commit
>> breaks xen\qemu compatibility, specifying the required changeset in the
>> other repository.
>> We could formally introduce this practice with the 3.5 development cycle.
> 
> This would certainly be an improvement, but it depends on the
> developer always knowing and recording exactly what synchronization is
> needed. This doesn't quite jibe with bisect, whose raison d'etre is to
> help find problems that went unnoticed for potentially long periods of
> time. Even when the hints work, bisection is still quite painful
> across two repositories in two different version control systems.

We plan to turn on the QEMU_TAG mechanism always after 3.4 is branched, so
that by default xen-unstable.hg will always clone a specific version of the
qemu git repository. I'm sure it should be then be possible to make bisect
update the foreign qemu repo as it goes quite straightforwardly.

 -- Keir

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

end of thread, other threads:[~2009-05-07 18:17 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-28  7:34 [PATCH] [Xend] Fix HVM PCI hot removal failure Zhai, Edwin
2009-04-28  7:52 ` Keir Fraser
2009-04-28  8:18   ` Zhai, Edwin
2009-04-28  9:17     ` Keir Fraser
2009-04-28  9:33       ` Zhai, Edwin
2009-04-28 10:38         ` Stefano Stabellini
2009-04-29 15:41           ` Repositories and build system Ian Jackson
2009-04-29 16:38             ` Dan Magenheimer
2009-04-29 16:56               ` Ian Jackson
2009-04-29 17:40                 ` Dan Magenheimer
2009-04-29 18:06                   ` Keir Fraser
2009-05-07 16:51                   ` Stefano Stabellini
2009-05-07 17:00                     ` Brendan Cully
2009-05-07 18:17                       ` Keir Fraser
2009-04-28 12:17         ` [PATCH] [Xend] Fix HVM PCI hot removal failure Keir Fraser

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.