WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [linux-2.6.18-xen] [IA64] Use xsm_op instead of acm_op.

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [linux-2.6.18-xen] [IA64] Use xsm_op instead of acm_op.
From: "Xen patchbot-linux-2.6.18-xen" <patchbot-linux-2.6.18-xen@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 15 Oct 2007 11:40:12 -0700
Delivery-date: Mon, 15 Oct 2007 11:40:49 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir@xxxxxxxxxxxxx>
# Date 1192261208 -3600
# Node ID 50bfa53b4a93283d3f2d450ba59487c5dccd42cf
# Parent  d34182a37ba947980e109c94eb77f3f9314e3227
[IA64] Use xsm_op instead of acm_op.
Signed-off-by: Alex Williamson <alex.williamson@xxxxxx>
---
 arch/ia64/xen/xcom_privcmd.c |    8 ++++----
 include/asm-ia64/hypercall.h |    6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff -r d34182a37ba9 -r 50bfa53b4a93 arch/ia64/xen/xcom_privcmd.c
--- a/arch/ia64/xen/xcom_privcmd.c      Fri Oct 12 12:08:17 2007 +0100
+++ b/arch/ia64/xen/xcom_privcmd.c      Sat Oct 13 08:40:08 2007 +0100
@@ -334,7 +334,7 @@ xencomm_privcmd_domctl(privcmd_hypercall
 }
 
 static int
-xencomm_privcmd_acm_op(privcmd_hypercall_t *hypercall)
+xencomm_privcmd_xsm_op(privcmd_hypercall_t *hypercall)
 {
        void __user *arg = (void __user *)hypercall->arg[0];
        xen_acmctl_t kern_arg;
@@ -360,7 +360,7 @@ xencomm_privcmd_acm_op(privcmd_hypercall
 
                set_xen_guest_handle(kern_arg.u.getssid.ssidbuf, (void *)desc);
 
-               ret = xencomm_arch_hypercall_acm_op(op_desc);
+               ret = xencomm_arch_hypercall_xsm_op(op_desc);
 
                xencomm_free(desc);
 
@@ -783,8 +783,8 @@ privcmd_hypercall(privcmd_hypercall_t *h
                return xencomm_privcmd_domctl(hypercall);
        case __HYPERVISOR_sysctl:
                return xencomm_privcmd_sysctl(hypercall);
-        case __HYPERVISOR_acm_op:
-               return xencomm_privcmd_acm_op(hypercall);
+       case __HYPERVISOR_xsm_op:
+               return xencomm_privcmd_xsm_op(hypercall);
        case __HYPERVISOR_xen_version:
                return xencomm_privcmd_xen_version(hypercall);
        case __HYPERVISOR_memory_op:
diff -r d34182a37ba9 -r 50bfa53b4a93 include/asm-ia64/hypercall.h
--- a/include/asm-ia64/hypercall.h      Fri Oct 12 12:08:17 2007 +0100
+++ b/include/asm-ia64/hypercall.h      Sat Oct 13 08:40:08 2007 +0100
@@ -157,9 +157,9 @@ xencomm_arch_hypercall_event_channel_op(
 }
 
 static inline int
-xencomm_arch_hypercall_acm_op(struct xencomm_handle *arg)
-{
-       return _hypercall1(int, acm_op, arg);
+xencomm_arch_hypercall_xsm_op(struct xencomm_handle *arg)
+{
+       return _hypercall1(int, xsm_op, arg);
 }
 
 static inline int

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [linux-2.6.18-xen] [IA64] Use xsm_op instead of acm_op., Xen patchbot-linux-2.6.18-xen <=