On Thu, 2011-03-17 at 14:34 -0600, Eric Blake wrote:
On 03/17/2011 02:26 PM, Alex Williamson wrote:
> I'm proposing we make use of $PCIDIR/reset in qemu-kvm to reset
> devices on VM reset. We need to add it to libvirt's list of
> files that get ownership for device assignment.
>
> Signed-off-by: Alex Williamson <alex.williamson(a)redhat.com>
> ---
>
> src/util/pci.c | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/src/util/pci.c b/src/util/pci.c
> index 095ad3f..8d2dbb0 100644
> --- a/src/util/pci.c
> +++ b/src/util/pci.c
> @@ -1349,11 +1349,13 @@ int pciDeviceFileIterate(pciDevice *dev,
>
> while ((ent = readdir(dir)) != NULL) {
> /* Device assignment requires:
> - * $PCIDIR/config, $PCIDIR/resource, $PCIDIR/resourceNNN, $PCIDIR/rom
> + * $PCIDIR/config, $PCIDIR/resource, $PCIDIR/resourceNNN,
> + * $PCIDIR/rom, $PCIDIR/reset
Hmm, in the case of hot-plug, we are already passing the config fd via
SCM_RIGHTS rather than having qemu directly open it. Should we be
passing all of these files via SCM_RIGHTS?
I believe config is the only file that does some permission checks on
open that requires those rights. The rest seem to be strictly file
permission access.
> */
> if (STREQ(ent->d_name, "config") ||
> STRPREFIX(ent->d_name, "resource") ||
> - STREQ(ent->d_name, "rom")) {
> + STREQ(ent->d_name, "rom") ||
> + STREQ(ent->d_name, "reset")) {
At any rate, this looks reasonable to me, so ACK, and I'll push it shortly.
Thanks!
Alex