[libvirt] [PATCH] Fix a typo in virDiskHasValidPciAddr()

Mark McLoughlin markmc at redhat.com
Thu Sep 24 08:10:34 UTC 2009


On Wed, 2009-09-23 at 18:46 +0200, Jiri Denemark wrote:
> Signed-off-by: Jiri Denemark <jdenemar at redhat.com>
> ---
>  src/conf/domain_conf.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h
> index 09368d9..d494e54 100644
> --- a/src/conf/domain_conf.h
> +++ b/src/conf/domain_conf.h
> @@ -125,7 +125,7 @@ struct _virDomainDiskDef {
>  static inline int
>  virDiskHasValidPciAddr(virDomainDiskDefPtr def)
>  {
> -    return def->pci_addr.domain || def->pci_addr.domain || def->pci_addr.slot;
> +    return def->pci_addr.domain || def->pci_addr.bus || def->pci_addr.slot;
>  }
>  

Nice catch, I've pushed this and the same fix for
virNetHasValidPciAddr()

Thanks,
Mark.




More information about the libvir-list mailing list