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] Include string.h in the hypercall header file to ensure

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Include string.h in the hypercall header file to ensure that memcpy() is defined.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 01 May 2006 17:38:08 +0000
Delivery-date: Mon, 01 May 2006 10:46:57 -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 kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID da48960db8d23c6205509cad3a82885bf718f9f3
# Parent  219ac58678c5668f7932de693042ded52824a538
Include string.h in the hypercall header file to ensure that memcpy() is 
defined.

Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r 219ac58678c5 -r da48960db8d2 
linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/hypercall.h
--- a/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/hypercall.h    Mon May 
01 15:30:53 2006 +0100
+++ b/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/hypercall.h    Mon May 
01 17:02:43 2006 +0100
@@ -32,6 +32,8 @@
 
 #ifndef __HYPERCALL_H__
 #define __HYPERCALL_H__
+
+#include <linux/string.h> /* memcpy() */
 
 #ifndef __HYPERVISOR_H__
 # error "please don't include this file directly"
diff -r 219ac58678c5 -r da48960db8d2 
linux-2.6-xen-sparse/include/asm-ia64/hypercall.h
--- a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Mon May 01 15:30:53 
2006 +0100
+++ b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Mon May 01 17:02:43 
2006 +0100
@@ -32,6 +32,8 @@
 
 #ifndef __HYPERCALL_H__
 #define __HYPERCALL_H__
+
+#include <linux/string.h> /* memcpy() */
 
 #ifndef __HYPERVISOR_H__
 # error "please don't include this file directly"
diff -r 219ac58678c5 -r da48960db8d2 
linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
--- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h  Mon May 
01 15:30:53 2006 +0100
+++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h  Mon May 
01 17:02:43 2006 +0100
@@ -36,6 +36,8 @@
 
 #ifndef __HYPERCALL_H__
 #define __HYPERCALL_H__
+
+#include <linux/string.h> /* memcpy() */
 
 #ifndef __HYPERVISOR_H__
 # error "please don't include this file directly"

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Include string.h in the hypercall header file to ensure that memcpy() is defined., Xen patchbot -unstable <=