Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3CBB4C61DA3 for ; Tue, 21 Feb 2023 01:31:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233011AbjBUBaK (ORCPT ); Mon, 20 Feb 2023 20:30:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57338 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231976AbjBUBaI (ORCPT ); Mon, 20 Feb 2023 20:30:08 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AC018212BA for ; Mon, 20 Feb 2023 17:30:05 -0800 (PST) Received: from kwepemi500026.china.huawei.com (unknown [172.30.72.56]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4PLM6K2Kx0zJrDg; Tue, 21 Feb 2023 09:25:13 +0800 (CST) Received: from huawei.com (10.67.175.33) by kwepemi500026.china.huawei.com (7.221.188.247) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.6; Tue, 21 Feb 2023 09:30:02 +0800 From: Lin Yujun To: , , , , , , , , , , , , , CC: , , Subject: [PATCH -next] arm64: Optimize the comparison of unsigned expressions to avoid compiling error Date: Tue, 21 Feb 2023 09:27:40 +0800 Message-ID: <20230221012740.2929481-1-linyujun809@huawei.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.175.33] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemi500026.china.huawei.com (7.221.188.247) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org while compile arch/arm64/include/asm/cpufeature.h with -Werror=type-limits enabled, errors shown as below: ./arch/arm64/include/asm/cpufeature.h: In function 'system_supports_4kb_granule': ./arch/arm64/include/asm/cpufeature.h:653:14: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits] return (val >= ID_AA64MMFR0_TGRAN4_SUPPORTED_MIN) && ^~ ./arch/arm64/include/asm/cpufeature.h: In function 'system_supports_64kb_granule': ./arch/arm64/include/asm/cpufeature.h:666:14: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits] return (val >= ID_AA64MMFR0_TGRAN64_SUPPORTED_MIN) && ^~ Modify the return judgment statement, use "((val - min) < (val - max - 1))" to confirm that returns true in “min <= val <= max” cases, false in other cases. Fixes: 79d82cbcbb3d ("arm64/kexec: Test page size support with new TGRAN range values") Signed-off-by: Lin Yujun --- arch/arm64/include/asm/cpufeature.h | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/arch/arm64/include/asm/cpufeature.h b/arch/arm64/include/asm/cpufeature.h index 03d1c9d7af82..0a6bda025141 100644 --- a/arch/arm64/include/asm/cpufeature.h +++ b/arch/arm64/include/asm/cpufeature.h @@ -54,6 +54,9 @@ enum ftr_type { #define FTR_VISIBLE_IF_IS_ENABLED(config) \ (IS_ENABLED(config) ? FTR_VISIBLE : FTR_HIDDEN) +#define IN_RANGE_INCLUSIVE(val, min, max) \ + (((val) - (min)) < ((val) - (max) - 1)) + struct arm64_ftr_bits { bool sign; /* Value is signed ? */ bool visible; @@ -693,8 +696,9 @@ static inline bool system_supports_4kb_granule(void) val = cpuid_feature_extract_unsigned_field(mmfr0, ID_AA64MMFR0_EL1_TGRAN4_SHIFT); - return (val >= ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED_MIN) && - (val <= ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED_MAX); + return IN_RANGE_INCLUSIVE(val, + ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED_MIN, + ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED_MAX); } static inline bool system_supports_64kb_granule(void) @@ -706,8 +710,9 @@ static inline bool system_supports_64kb_granule(void) val = cpuid_feature_extract_unsigned_field(mmfr0, ID_AA64MMFR0_EL1_TGRAN64_SHIFT); - return (val >= ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED_MIN) && - (val <= ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED_MAX); + return IN_RANGE_INCLUSIVE(val, + ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED_MIN, + ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED_MAX); } static inline bool system_supports_16kb_granule(void) @@ -719,8 +724,9 @@ static inline bool system_supports_16kb_granule(void) val = cpuid_feature_extract_unsigned_field(mmfr0, ID_AA64MMFR0_EL1_TGRAN16_SHIFT); - return (val >= ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED_MIN) && - (val <= ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED_MAX); + return IN_RANGE_INCLUSIVE(val, + ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED_MIN, + ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED_MAX); } static inline bool system_supports_mixed_endian_el0(void) -- 2.34.1