|
|
|
|
|
|
|
|
|
|
xen-ia64-devel
Re: [Xen-ia64-devel] [PATCH] Cleanup vcpu.h
It seems like a good time to remove some of these old krufty comments
and previous implementations too (subset below). Could you resubmit
with these scrubbed out? Thanks,
Alex
On Wed, 2008-03-26 at 16:52 +0900, Kouya Shimura wrote:
> +static inline IA64FAULT vcpu_get_iipa(VCPU * vcpu, u64 * pval)
> +{
> + u64 val = PSCB(vcpu, iipa);
> + // SP entry code does not save iipa yet nor does it get
> + // properly delivered in the pscb
> +// printk("*** vcpu_get_iipa: cr.iipa not fully implemented yet!!
> \n");
> + *pval = val;
> + return IA64_NO_FAULT;
> +}
> +
> +static inline IA64FAULT vcpu_get_ifs(VCPU * vcpu, u64 * pval)
> +{
> + //PSCB(vcpu,ifs) = PSCB(vcpu)->regs.cr_ifs;
> + //*pval = PSCB(vcpu,regs).cr_ifs;
> + *pval = PSCB(vcpu, ifs);
> + return IA64_NO_FAULT;
> +}
--
Alex Williamson HP Open Source & Linux Org.
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
|
|
|
|
|