From: Keir Fraser Date: Mon, 22 Oct 2007 08:41:25 +0000 (+0100) Subject: ia64: Add HVM_PARAM_BUFPIOREQ_PFN constant. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14847^2~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1934a762f0ebd5b4f36b946815d36e2d6b5bd2bd;p=xen.git ia64: Add HVM_PARAM_BUFPIOREQ_PFN constant. Signed-off-by: Isaku Yamahata --- diff --git a/tools/python/xen/xend/XendConstants.py b/tools/python/xen/xend/XendConstants.py index 751e4487f6..befabb4e16 100644 --- a/tools/python/xen/xend/XendConstants.py +++ b/tools/python/xen/xend/XendConstants.py @@ -45,6 +45,7 @@ HVM_PARAM_IOREQ_PFN = 5 HVM_PARAM_BUFIOREQ_PFN = 6 HVM_PARAM_NVRAM_FD = 7 HVM_PARAM_VHPT_SIZE = 8 +HVM_PARAM_BUFPIOREQ_PFN = 9 restart_modes = [ "restart", diff --git a/xen/include/public/hvm/params.h b/xen/include/public/hvm/params.h index 548b0dc63b..36dfdb2ee1 100644 --- a/xen/include/public/hvm/params.h +++ b/xen/include/public/hvm/params.h @@ -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