From: Greg Kroah-Hartman Date: Mon, 30 Jan 2023 13:50:07 +0000 (+0100) Subject: 5.4-stable patches X-Git-Tag: v5.10.166~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ed9299133e62a4518ebcca7330f0805a3919855;p=thirdparty%2Fkernel%2Fstable-queue.git 5.4-stable patches added patches: x86-asm-fix-an-assembler-warning-with-current-binutils.patch --- diff --git a/queue-5.4/series b/queue-5.4/series index 64db996b177..bcc8dd14a43 100644 --- a/queue-5.4/series +++ b/queue-5.4/series @@ -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 index 00000000000..b0e3012a018 --- /dev/null +++ b/queue-5.4/x86-asm-fix-an-assembler-warning-with-current-binutils.patch @@ -0,0 +1,29 @@ +From 55d235361fccef573990dfa5724ab453866e7816 Mon Sep 17 00:00:00 2001 +From: Mikulas Patocka +Date: Tue, 3 Jan 2023 10:24:11 -0500 +Subject: x86/asm: Fix an assembler warning with current binutils + +From: Mikulas Patocka + +commit 55d235361fccef573990dfa5724ab453866e7816 upstream. + +Fix a warning: "found `movsd'; assuming `movsl' was meant" + +Signed-off-by: Mikulas Patocka +Signed-off-by: Ingo Molnar +Cc: linux-kernel@vger.kernel.org +Signed-off-by: Greg Kroah-Hartman +--- + 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)