# HG changeset patch # User yamahata@xxxxxxxxxxxxx # Date 1170047246 -32400 # Node ID 2dba4ff76b7c2cc2994ccf7cc9077cee2ab0d428 # Parent b43e97dba85d7320940a75edc4dd6a8dcfa1d394 compilation fix. xc_linux_restore.c and xc_linux_save.c. The next patch moves the INVALID_P2M_ENTRY definition from xg_save_restore.h to xg_private.h. It causes compilation failure. PATCHNAME: compilation_fix_invalid_p2m_entry Signed-off-by: Isaku Yamahata diff -r b43e97dba85d -r 2dba4ff76b7c tools/libxc/xc_linux_restore.c --- a/tools/libxc/xc_linux_restore.c Fri Feb 02 20:20:42 2007 +0900 +++ b/tools/libxc/xc_linux_restore.c Mon Jan 29 14:07:26 2007 +0900 @@ -11,6 +11,7 @@ #include "xg_private.h" #include "xg_save_restore.h" +#include "xc_dom.h" /* max mfn of the current host machine */ static unsigned long max_mfn; diff -r b43e97dba85d -r 2dba4ff76b7c tools/libxc/xc_linux_save.c --- a/tools/libxc/xc_linux_save.c Fri Feb 02 20:20:42 2007 +0900 +++ b/tools/libxc/xc_linux_save.c Mon Jan 29 14:07:26 2007 +0900 @@ -13,6 +13,7 @@ #include #include "xc_private.h" +#include "xc_dom.h" #include "xg_private.h" #include "xg_save_restore.h"