From patchwork Tue Mar 1 07:32:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ammar Faizi X-Patchwork-Id: 547508 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 97C3DC433EF for ; Tue, 1 Mar 2022 07:32:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233014AbiCAHd2 (ORCPT ); Tue, 1 Mar 2022 02:33:28 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42652 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231921AbiCAHd2 (ORCPT ); Tue, 1 Mar 2022 02:33:28 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2CDD84B1FB; Mon, 28 Feb 2022 23:32:48 -0800 (PST) Received: from integral2.. (unknown [182.2.70.248]) by gnuweeb.org (Postfix) with ESMTPSA id 02BBB7EDA4; Tue, 1 Mar 2022 07:32:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1646119967; bh=8R4MhWSJNcQ8evBE1421lIDo5eU1fFu91hoE2oHOvBg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R7ykZF1mRmZWaAhyGAwuNn7KhP6To4lZ0bVnQF/7NZitYcM6PA4T879tvzHzfHE2e bH4XQqCSduIIYBk+xKC1v6l+T3zQdQHR/elwv6QkG0tpGk0XCQpZlnsOjzMQY+RPsM 8NQgoyR/zQk5UIBgqPy9jn6CnrHgm/6uZCzVaxehrgivmOdYkPKNm35he+7/72AVCq aw0xL4jC5L/+r40ajKjyaYI9FLxhXck0zncsOim47AZdVQsy+SyRbqbLafCmCZl4g4 0soVhjlGMk47h6c2AmOQvHssnXzkeaPo+cNcW8ImDSQh5ifEmbCDl51wd2g8LJw0kq qvWaBdW8dSgvw== From: Ammar Faizi To: Borislav Petkov Cc: Dave Hansen , "H. Peter Anvin" , Ingo Molnar , Thomas Gleixner , Tony Luck , linux-edac@vger.kernel.org, linux-kernel@vger.kernel.org, gwml@vger.gnuweeb.org, x86@kernel.org, stable@vger.kernel.org, Ammar Faizi Subject: [PATCH v2 1/2] x86/delay: Fix the wrong asm constraint in `delay_loop()` Date: Tue, 1 Mar 2022 14:32:22 +0700 Message-Id: <20220301073223.98236-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220301073223.98236-1-ammarfaizi2@gnuweeb.org> References: <20220301073223.98236-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org The asm constraint does not reflect that the asm statement can modify the value of @loops. But the asm statement in delay_loop() does change the @loops. If by any chance the compiler inlines this function, it may clobber random stuff (e.g. local variable, important temporary value in reg, etc.). Fortunately, delay_loop() is only called indirectly (so it can't inline), and then the register it clobbers is %rax (which is by the nature of the calling convention, it's a caller saved register), so it didn't yield any bug. ^ That shouldn't be an excuse for using the wrong constraint anyway. This changes "a" (as an input) to "+a" (as an input and output). Cc: Thomas Gleixner Cc: Ingo Molnar Cc: Borislav Petkov Cc: Dave Hansen Cc: "H. Peter Anvin" Fixes: e01b70ef3eb3080fecc35e15f68cd274c0a48163 ("x86: fix bug in arch/i386/lib/delay.c file, delay_loop function") Signed-off-by: Ammar Faizi --- arch/x86/lib/delay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c index 65d15df6212d..0e65d00e2339 100644 --- a/arch/x86/lib/delay.c +++ b/arch/x86/lib/delay.c @@ -54,8 +54,8 @@ static void delay_loop(u64 __loops) " jnz 2b \n" "3: dec %0 \n" - : /* we don't need output */ - :"a" (loops) + : "+a" (loops) + : ); }