[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v4 08/17] x86/VPMU: Make vpmu not HVM-specific
>>> On 21.01.14 at 20:08, Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx> wrote: > -#define vcpu_vpmu(vcpu) (&((vcpu)->arch.hvm_vcpu.vpmu)) > -#define vpmu_vcpu(vpmu) (container_of((vpmu), struct vcpu, \ > - arch.hvm_vcpu.vpmu)) > +#define vcpu_vpmu(vcpu) (&((vcpu)->arch.vpmu)) > +#define vpmu_vcpu(vpmu) (container_of((vpmu), struct vcpu, arch.vpmu)) If you already edit this, I'd prefer if you also stripped the various redundant parentheses to make them better readable: #define vcpu_vpmu(vcpu) (&(vcpu)->arch.vpmu) #define vpmu_vcpu(vpmu) container_of(vpmu, struct vcpu, arch.vpmu) Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |