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] [IA64] fix print out in ia64 setup_guest()

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [IA64] fix print out in ia64 setup_guest()
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Sat, 18 Mar 2006 11:18:19 +0000
Delivery-date: Sat, 18 Mar 2006 11:21:23 +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-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User awilliam@xxxxxxxxxxx
# Node ID cb5abeaabd1a044911cdfc23c4a01faa0ef9723a
# Parent  5a0a0d9d126a6a583ce28a53130316436eeb5389
[IA64] fix print out in ia64 setup_guest()

Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx>

diff -r 5a0a0d9d126a -r cb5abeaabd1a tools/libxc/xc_linux_build.c
--- a/tools/libxc/xc_linux_build.c      Fri Mar 10 16:18:52 2006
+++ b/tools/libxc/xc_linux_build.c      Fri Mar 10 16:19:54 2006
@@ -505,8 +505,12 @@
 
     *store_mfn = page_array[1];
     *console_mfn = page_array[2];
-    printf("store_mfn: 0x%lx, console_mfn: 0x%lx\n",
-           (uint64_t)store_mfn, (uint64_t)console_mfn);
+    printf("start_info: 0x%lx at 0x%lx, "
+           "store_mfn: 0x%lx at 0x%lx, "
+           "console_mfn: 0x%lx at 0x%lx\n",
+           page_array[0], nr_pages,
+           *store_mfn,    nr_pages - 2,
+           *console_mfn,  nr_pages - 1);
 
     start_info = xc_map_foreign_range(
         xc_handle, dom, PAGE_SIZE, PROT_READ|PROT_WRITE, page_array[0]);

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [IA64] fix print out in ia64 setup_guest(), Xen patchbot -unstable <=