From 5530782cfe70ed22fe44358f6a10c38916443b42 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 26 Nov 2019 14:17:45 +0100 Subject: [PATCH] EFI: fix "efi=attr=" handling MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Commit 633a40947321 ("docs: Improve documentation and parsing for efi=") failed to honor the strcmp()-like return value convention of cmdline_strcmp(). Reported-by: Roman Shaposhnik Signed-off-by: Jan Beulich Reviewed-by: Wei Liu Reviewed-by: Roger Pau Monné Release-acked-by: Juergen Gross --- xen/common/efi/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/efi/boot.c b/xen/common/efi/boot.c index a8b6f39721..3f1c330afe 100644 --- a/xen/common/efi/boot.c +++ b/xen/common/efi/boot.c @@ -1430,9 +1430,9 @@ static int __init parse_efi_param(const char *s) } else if ( (ss - s) > 5 && !memcmp(s, "attr=", 5) ) { - if ( cmdline_strcmp(s + 5, "uc") ) + if ( !cmdline_strcmp(s + 5, "uc") ) efi_map_uc = true; - else if ( cmdline_strcmp(s + 5, "no") ) + else if ( !cmdline_strcmp(s + 5, "no") ) efi_map_uc = false; else rc = -EINVAL; -- 2.39.5