# HG changeset patch # User yamahata@xxxxxxxxxxxxx # Date 1193024579 -32400 # Node ID c3d213ef8e7cab3150c84cbd84894221fbf614df # Parent 977f5886e288f4c6764e5e12cb6492eff54a6bca add HVM_PARAM_BUFPIOREQ_PFN constant. PATCHNAME: add_hvm_param_bufpioreq_pfn Signed-off-by: Isaku Yamahata diff -r 977f5886e288 -r c3d213ef8e7c tools/python/xen/xend/XendConstants.py --- a/tools/python/xen/xend/XendConstants.py Mon Oct 22 15:57:49 2007 +0900 +++ b/tools/python/xen/xend/XendConstants.py Mon Oct 22 12:42:59 2007 +0900 @@ -45,6 +45,7 @@ HVM_PARAM_BUFIOREQ_PFN = 6 HVM_PARAM_BUFIOREQ_PFN = 6 HVM_PARAM_NVRAM_FD = 7 HVM_PARAM_VHPT_SIZE = 8 +HVM_PARAM_BUFPIOREQ_PFN = 9 restart_modes = [ "restart", diff -r 977f5886e288 -r c3d213ef8e7c xen/include/public/hvm/params.h --- a/xen/include/public/hvm/params.h Mon Oct 22 15:57:49 2007 +0900 +++ b/xen/include/public/hvm/params.h Mon Oct 22 12:42:59 2007 +0900 @@ -53,7 +53,8 @@ #ifdef __ia64__ #define HVM_PARAM_NVRAM_FD 7 #define HVM_PARAM_VHPT_SIZE 8 -#define HVM_NR_PARAMS 9 +#define HVM_PARAM_BUFPIOREQ_PFN 9 +#define HVM_NR_PARAMS 10 #else #define HVM_NR_PARAMS 7 #endif