From nobody Tue Sep 16 12:27:39 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A3BBFC3DA7D for ; Tue, 3 Jan 2023 17:06:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238540AbjACRGg (ORCPT ); Tue, 3 Jan 2023 12:06:36 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49114 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238514AbjACRGR (ORCPT ); Tue, 3 Jan 2023 12:06:17 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AA92914082; Tue, 3 Jan 2023 09:02:24 -0800 (PST) Date: Tue, 03 Jan 2023 17:02:04 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1672765325; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=p/JG5L2EoojYjh6GpY/ztsHyqNDX+TYGc/56wDuZiUA=; b=K0QXuvKsIqSusMPHKgz+k8jEG2ZaDzm09+ARTHFc0YfmsErKjoWLDyqf0reaoVncN9xO5V nrSRb9GqG3IQlpebU8zw0WXiAS2nlnF/E8H8TPIs4K4ytbtuaRD+NldkxxIhRNK2Do/MeY tMdfqq/KehOOh5cfpISH0rN7tJN+P1ogTjjGNRjnOPRPdS6Yhv4skipRrrlcA31VS6L9fR PCrWLMF7x++jCzK0p7coC0Lt2d+MzyXr8+ZTsAzIgW7TGZe0I1CkYKbjys/ohvZG/GhYSH GVGtwfQB4Slh7rusnzF16auggAfbf2CipzgbSTLsp348cYb6j+Y59f33LWxCEA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1672765325; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=p/JG5L2EoojYjh6GpY/ztsHyqNDX+TYGc/56wDuZiUA=; b=2HopG3ua/Kv7hIzdUg00I934uUyxXb38G1Pqi5a5jm9HpuOakK1fcviyeYvWp8hfG8OhHt SaHL1x3JNjo2ojDw== From: "tip-bot2 for Mikulas Patocka" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: x86/urgent] x86/asm: Fix an assembler warning with current binutils Cc: Mikulas Patocka , Ingo Molnar , linux-kernel@vger.kernel.org, x86@kernel.org MIME-Version: 1.0 Message-ID: <167276532482.4906.17722576860770017597.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 55d235361fccef573990dfa5724ab453866e7816 Gitweb: https://git.kernel.org/tip/55d235361fccef573990dfa5724ab4538= 66e7816 Author: Mikulas Patocka AuthorDate: Tue, 03 Jan 2023 10:24:11 -05:00 Committer: Ingo Molnar 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 Signed-off-by: Ingo Molnar Cc: linux-kernel@vger.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)