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] Enable dom_mem_ops on XEN/IA64

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Enable dom_mem_ops on XEN/IA64
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Tue, 14 Jun 2005 17:48:48 +0000
Delivery-date: Sun, 19 Jun 2005 18:02:57 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
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 Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1709.1.6, 2005/06/14 11:48:48-06:00, djm@xxxxxxxxxxxxxxx

        Enable dom_mem_ops on XEN/IA64
        
        Signed-off-by Kevin Tian <Kevin.tian@xxxxxxxxx>



 arch/ia64/hypercall.c |    3 +--
 common/Makefile       |    4 ++--
 2 files changed, 3 insertions(+), 4 deletions(-)


diff -Nru a/xen/arch/ia64/hypercall.c b/xen/arch/ia64/hypercall.c
--- a/xen/arch/ia64/hypercall.c 2005-06-19 14:04:05 -04:00
+++ b/xen/arch/ia64/hypercall.c 2005-06-19 14:04:05 -04:00
@@ -126,8 +126,7 @@
                break;
 
            case __HYPERVISOR_dom_mem_op:
-               /* regs->r8 = do_dom_mem_op(regs->r14, regs->r15, regs->r16, 
regs->r17, regs->r18); */
-               /* we don't handle reservations; just return success */
+               regs->r8 = do_dom_mem_op(regs->r14, regs->r15, regs->r16, 
regs->r17, regs->r18); 
                regs->r8 = regs->r16;
                break;
 
diff -Nru a/xen/common/Makefile b/xen/common/Makefile
--- a/xen/common/Makefile       2005-06-19 14:04:05 -04:00
+++ b/xen/common/Makefile       2005-06-19 14:04:05 -04:00
@@ -1,8 +1,8 @@
 
 include $(BASEDIR)/Rules.mk
 
-ifeq ($(TARGET_ARCH),ia64) 
-OBJS := $(subst dom_mem_ops.o,,$(OBJS))
+ifeq ($(TARGET_ARCH),ia64)
+#OBJS := $(subst dom_mem_ops.o,,$(OBJS))
 OBJS := $(subst grant_table.o,,$(OBJS))
 endif
 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Enable dom_mem_ops on XEN/IA64, BitKeeper Bot <=