From 0f8051a0844ba1894eab81d4b73a76feca23554e Mon Sep 17 00:00:00 2001 From: Yuri Pankov Date: Thu, 17 May 2018 15:41:32 +0300 Subject: [PATCH] 9533 8079's check for Xen HVM is incomplete Reviewed by: Toomas Soome Reviewed by: Alexander Pyhalov Reviewed by: Ken Mays Approved by: Robert Mustacchi --- usr/src/uts/i86pc/io/apix/apix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/src/uts/i86pc/io/apix/apix.c b/usr/src/uts/i86pc/io/apix/apix.c index bab7a3c6c5..d02ffe8096 100644 --- a/usr/src/uts/i86pc/io/apix/apix.c +++ b/usr/src/uts/i86pc/io/apix/apix.c @@ -267,7 +267,7 @@ apix_probe() * * Please remove when/if the issue is resolved. */ - if (get_hwenv() == HW_XEN_HVM) + if (get_hwenv() & HW_XEN_HVM) return (PSM_FAILURE); /* check for hw features if specified */ -- 2.11.4.GIT