[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 2/2] VT-d: Fix vt-d flush timeout issue.
On 10/12/15 09:33, Quan Xu wrote: > diff --git a/xen/include/xen/pci.h b/xen/include/xen/pci.h > index a5aef55..0bf6b1a 100644 > --- a/xen/include/xen/pci.h > +++ b/xen/include/xen/pci.h > @@ -41,6 +41,7 @@ > struct pci_dev_info { > bool_t is_extfn; > bool_t is_virtfn; > + bool_t is_unassignable; > struct { > u8 bus; > u8 devfn; > @@ -88,6 +89,12 @@ struct pci_dev { > #define for_each_pdev(domain, pdev) \ > list_for_each_entry(pdev, &(domain->arch.pdev_list), domain_list) > > +#define PDEV_UNASSIGNABLE 1 > +#define mark_pdev_unassignable(pdev) \ > + pdev->info.is_unassignable = PDEV_UNASSIGNABLE > + > +#define IS_PDEV_UNASSIGNABLE(pdev) pdev->info.is_unassignable Static inlines please. These macros lack any hygene whatsoever, but don't need to be macros in the first place. ~Andrew _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |