]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.4-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Jan 2023 13:50:07 +0000 (14:50 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Jan 2023 13:50:07 +0000 (14:50 +0100)
added patches:
x86-asm-fix-an-assembler-warning-with-current-binutils.patch

queue-5.4/series
queue-5.4/x86-asm-fix-an-assembler-warning-with-current-binutils.patch [new file with mode: 0644]

index 64db996b17775fe63b11d06af40eb9ae51b0a041..bcc8dd14a4359605d7457e3838eea0f3287d703a 100644 (file)
@@ -107,3 +107,4 @@ x86-i8259-mark-legacy-pic-interrupts-with-irq_level.patch
 netfilter-conntrack-unify-established-states-for-sctp-paths.patch
 perf-x86-amd-fix-potential-integer-overflow-on-shift-of-a-int.patch
 clk-fix-pointer-casting-to-prevent-oops-in-devm_clk_release.patch
+x86-asm-fix-an-assembler-warning-with-current-binutils.patch
diff --git a/queue-5.4/x86-asm-fix-an-assembler-warning-with-current-binutils.patch b/queue-5.4/x86-asm-fix-an-assembler-warning-with-current-binutils.patch
new file mode 100644 (file)
index 0000000..b0e3012
--- /dev/null
@@ -0,0 +1,29 @@
+From 55d235361fccef573990dfa5724ab453866e7816 Mon Sep 17 00:00:00 2001
+From: Mikulas Patocka <mpatocka@redhat.com>
+Date: Tue, 3 Jan 2023 10:24:11 -0500
+Subject: x86/asm: Fix an assembler warning with current binutils
+
+From: Mikulas Patocka <mpatocka@redhat.com>
+
+commit 55d235361fccef573990dfa5724ab453866e7816 upstream.
+
+Fix a warning: "found `movsd'; assuming `movsl' was meant"
+
+Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
+Signed-off-by: Ingo Molnar <mingo@kernel.org>
+Cc: linux-kernel@vger.kernel.org
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ arch/x86/lib/iomap_copy_64.S |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/arch/x86/lib/iomap_copy_64.S
++++ b/arch/x86/lib/iomap_copy_64.S
+@@ -10,6 +10,6 @@
+  */
+ ENTRY(__iowrite32_copy)
+       movl %edx,%ecx
+-      rep movsd
++      rep movsl
+       ret
+ ENDPROC(__iowrite32_copy)