From: Greg Kroah-Hartman Date: Mon, 30 Jan 2023 13:42:25 +0000 (+0100) Subject: 4.19-stable patches X-Git-Tag: v5.10.166~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5eed391f11edfc0c4c353b18dcdbe6917e55dcb2;p=thirdparty%2Fkernel%2Fstable-queue.git 4.19-stable patches added patches: x86-asm-fix-an-assembler-warning-with-current-binutils.patch --- diff --git a/queue-4.19/series b/queue-4.19/series index d924b56692f..f5b52dc6d63 100644 --- a/queue-4.19/series +++ b/queue-4.19/series @@ -63,3 +63,4 @@ net-tg3-resolve-deadlock-in-tg3_reset_task-during-ee.patch revert-input-synaptics-switch-touchpad-on-hp-laptop-15-da3001tu-to-rmi-mode.patch x86-i8259-mark-legacy-pic-interrupts-with-irq_level.patch drm-i915-display-fix-compiler-warning-about-array-overrun.patch +x86-asm-fix-an-assembler-warning-with-current-binutils.patch diff --git a/queue-4.19/x86-asm-fix-an-assembler-warning-with-current-binutils.patch b/queue-4.19/x86-asm-fix-an-assembler-warning-with-current-binutils.patch new file mode 100644 index 00000000000..39dad8480a5 --- /dev/null +++ b/queue-4.19/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 +@@ -22,6 +22,6 @@ + */ + ENTRY(__iowrite32_copy) + movl %edx,%ecx +- rep movsd ++ rep movsl + ret + ENDPROC(__iowrite32_copy)