|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH]Fix vlapic.h type
Good catch. This line:
#define vlapic_vcpu(vpic) (container_of((vpic), struct vcpu, \
arch.hvm_vcpu.vlapic))
should probably also be changed to this:
#define vlapic_vcpu(vlapic) (container_of((vlapic), struct vcpu, \
arch.hvm_vcpu.vlapic))
Patrick
Wei Huang wrote:
The following patch fixes a typo in vlapic_domain inside vlapic.h. I
also found an related error in vlapic.c file, which is fixed by this
patch too.
Signed-off-by: Wei Huang <wei.huang2@xxxxxxx>
------------------------------------------------------------------------
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|