From fbc2bbdca38021109590d436c3e5099ff1a5b50d Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Tue, 9 Oct 2018 11:42:32 +0200 Subject: [PATCH] x86/dom0: switch parse_dom0_param to use parse_boolean MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit No functional change expected. Signed-off-by: Roger Pau Monné Reviewed-by: Jan Beulich --- xen/arch/x86/dom0_build.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/xen/arch/x86/dom0_build.c b/xen/arch/x86/dom0_build.c index 86eb7db1da..dcd7afb058 100644 --- a/xen/arch/x86/dom0_build.c +++ b/xen/arch/x86/dom0_build.c @@ -225,16 +225,17 @@ static int __init parse_dom0_param(const char *s) int rc = 0; do { + int val; ss = strchr(s, ','); if ( !ss ) ss = strchr(s, '\0'); - if ( !strncmp(s, "pvh", ss - s) ) - dom0_pvh = true; + if ( (val = parse_boolean("pvh", s, ss)) >= 0 ) + dom0_pvh = val; #ifdef CONFIG_SHADOW_PAGING - else if ( !strncmp(s, "shadow", ss - s) ) - opt_dom0_shadow = true; + else if ( (val = parse_boolean("shadow", s, ss)) >= 0 ) + opt_dom0_shadow = val; #endif else rc = -EINVAL; -- 2.30.2