lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <167276532482.4906.17722576860770017597.tip-bot2@tip-bot2>
Date:   Tue, 03 Jan 2023 17:02:04 -0000
From:   "tip-bot2 for Mikulas Patocka" <tip-bot2@...utronix.de>
To:     linux-tip-commits@...r.kernel.org
Cc:     Mikulas Patocka <mpatocka@...hat.com>,
        Ingo Molnar <mingo@...nel.org>, linux-kernel@...r.kernel.org,
        x86@...nel.org
Subject: [tip: x86/urgent] x86/asm: Fix an assembler warning with current binutils

The following commit has been merged into the x86/urgent branch of tip:

Commit-ID:     55d235361fccef573990dfa5724ab453866e7816
Gitweb:        https://git.kernel.org/tip/55d235361fccef573990dfa5724ab453866e7816
Author:        Mikulas Patocka <mpatocka@...hat.com>
AuthorDate:    Tue, 03 Jan 2023 10:24:11 -05:00
Committer:     Ingo Molnar <mingo@...nel.org>
CommitterDate: Tue, 03 Jan 2023 17:55:11 +01:00

x86/asm: Fix an assembler warning with current binutils

Fix a warning: "found `movsd'; assuming `movsl' was meant"

Signed-off-by: Mikulas Patocka <mpatocka@...hat.com>
Signed-off-by: Ingo Molnar <mingo@...nel.org>
Cc: linux-kernel@...r.kernel.org
---
 arch/x86/lib/iomap_copy_64.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/lib/iomap_copy_64.S b/arch/x86/lib/iomap_copy_64.S
index a1f9416..6ff2f56 100644
--- a/arch/x86/lib/iomap_copy_64.S
+++ b/arch/x86/lib/iomap_copy_64.S
@@ -10,6 +10,6 @@
  */
 SYM_FUNC_START(__iowrite32_copy)
 	movl %edx,%ecx
-	rep movsd
+	rep movsl
 	RET
 SYM_FUNC_END(__iowrite32_copy)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ