From: Greg Kroah-Hartman Date: Mon, 30 Jan 2023 13:42:13 +0000 (+0100) Subject: 4.14-stable patches X-Git-Tag: v5.10.166~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68a2295dfea36fd887afd695717d6000e837b0f8;p=thirdparty%2Fkernel%2Fstable-queue.git 4.14-stable patches added patches: x86-asm-fix-an-assembler-warning-with-current-binutils.patch --- diff --git a/queue-4.14/series b/queue-4.14/series index 038d08f2668..d5a161c61a1 100644 --- a/queue-4.14/series +++ b/queue-4.14/series @@ -41,3 +41,4 @@ wifi-brcmfmac-fix-up-incorrect-4.14.y-backport-for-brcmf_fw_map_chip_to_name.pat xen-fix-up-build-warning-with-xen_init_time_ops-reference.patch drm-radeon-dp-make-radeon_dp_get_dp_link_config-static.patch scsi-qla2xxx-don-t-break-the-bsg-lib-abstractions.patch +x86-asm-fix-an-assembler-warning-with-current-binutils.patch diff --git a/queue-4.14/x86-asm-fix-an-assembler-warning-with-current-binutils.patch b/queue-4.14/x86-asm-fix-an-assembler-warning-with-current-binutils.patch new file mode 100644 index 00000000000..39dad8480a5 --- /dev/null +++ b/queue-4.14/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)