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-devel

[Xen-devel] [PATCH] tmem: fix ia64 build

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] tmem: fix ia64 build
From: "KUWAMURA Shin'ya" <kuwa@xxxxxxxxxxxxxx>
Date: Thu, 08 Apr 2010 15:03:11 +0900 (JST)
Delivery-date: Wed, 07 Apr 2010 23:04:57 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi,

This patch fixes the following error on ia64:
  /xen/common/built_in.o: In function `tmh_get_first_byte':
  /xen/include/xen/tmem_xen.h:350: undefined reference to `__map_domain_page'

Signed-off-by: KUWAMURA Shin'ya <kuwa@xxxxxxxxxxxxxx>
-- 
  KUWAMURA Shin'ya
# HG changeset patch
# User KUWAMURA Shin'ya <kuwa@xxxxxxxxxxxxxx>
# Date 1270691035 -32400
# Node ID 5bfb3c81605d2982d7c2e79a6fba3f8be963cb42
# Parent  3376c90960e83d9f1e34d51601a930290a128c09
tmem: fix ia64 build

This fixes the following error:
  /xen/common/built_in.o: In function `tmh_get_first_byte':
  /xen/include/xen/tmem_xen.h:350: undefined reference to `__map_domain_page'

Signed-off-by: KUWAMURA Shin'ya <kuwa@xxxxxxxxxxxxxx>

diff -r 3376c90960e8 -r 5bfb3c81605d xen/include/xen/tmem_xen.h
--- a/xen/include/xen/tmem_xen.h        Wed Apr 07 10:17:27 2010 +0100
+++ b/xen/include/xen/tmem_xen.h        Thu Apr 08 10:43:55 2010 +0900
@@ -15,6 +15,7 @@
 #include <xen/sched.h>  /* struct domain */
 #include <xen/guest_access.h> /* copy_from_guest */
 #include <xen/hash.h> /* hash_long */
+#include <xen/domain_page.h> /* __map_domain_page */
 #include <public/tmem.h>
 #ifdef CONFIG_COMPAT
 #include <compat/tmem.h>
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] tmem: fix ia64 build, KUWAMURA Shin'ya <=