|
|
|
|
|
|
|
|
|
|
xen-ia64-devel
RE: [Xen-ia64-devel] [Patch] wrong type cast in ia64_hypercall
Hi, Dan,
Seems bunches of necessary patches like below are not checked in yet.
Any blocking issues there? If no, they deserve check-in indeed.
BTW, can I request all developers with patch pending to check status
whether yours gets checked in? If not, please resend them. ;-)
Thanks,
Kevin
>-----Original Message-----
>From: xen-ia64-devel-bounces@xxxxxxxxxxxxxxxxxxx
>[mailto:xen-ia64-devel-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Akio Takebe
>Sent: 2006年2月15日 9:22
>To: xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
>Subject: [Xen-ia64-devel] [Patch] wrong type cast in ia64_hypercall
>
>Hi,
>
>This is wrong type cast.
>This patch fix warnning of incompatible pointer type.
>
>Signed-off-by: Akio Takebe <takebe_akio@xxxxxxxxxxxxxx>
>
>diff -r 982b9678af2c xen/arch/ia64/xen/hypercall.c
>--- a/xen/arch/ia64/xen/hypercall.c Fri Feb 10 23:16:33 2006
>+++ b/xen/arch/ia64/xen/hypercall.c Wed Feb 15 10:15:40 2006
>@@ -63,7 +63,7 @@
> int
> ia64_hypercall (struct pt_regs *regs)
> {
>- struct vcpu *v = (struct domain *) current;
>+ struct vcpu *v = current;
> struct sal_ret_values x;
> unsigned long *tv, *tc;
> int pi;
>
>
>_______________________________________________
>Xen-ia64-devel mailing list
>Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
>http://lists.xensource.com/xen-ia64-devel
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
|
|
|
|
|