From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5F8FE533D6 for ; Tue, 18 Aug 2026 17:24:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787073855; cv=none; b=rFyY2z3G2NOqiZsnF93SqLidYu6SP44XBPAPqwADMsuxsw6yy3CmCOHLFmuNHxFm7vTYlfMs7USVl7ZrPR7+sGMyhTH14wHtRnzYukkToc8haEUhrwkIRVFgFF5scNzHQfE0NG4AIF8VNqu2ecP2UJaXqRRQIFZPOXiHpj08T6U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787073855; c=relaxed/simple; bh=4OroeR8S0g0EyiQcfP5LYl/GYigyP24YmApTp2enH2Q=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=nLyypU22FsO1erBSH/0nLoggCF1myR2CfWYSHTlQ6onHZzYwOBgL2mGEI8BE2Qx7PztP5JdS2VGNW+l/9/0YkyhRJpMgDs9ZEGUoIcLQ8gD+v3qQedEWDWYWRcgJxY5v50V6UsRDFzHJwWJZl0T1fRZbln71qoamYNVEcmlMONI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=WrBDJ4Qa; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="WrBDJ4Qa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F8271F000E9; Tue, 18 Aug 2026 17:24:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1787073853; bh=hcD1cr7UQPZGV1CZ99tI4YDeunETgJ5XLCW/qpgT2hU=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=WrBDJ4QaPEkHzOUnhzKcHCdU0E7M/FTAFv1fBf7i/5PE4O/bpmfO91oqK08d4QBVF l5QD/frgNSCU8waHJg2okI5lx0+pU469tbOqN9FKsEqsvctzdSlPsqJhtrRbIn4WtV lJWqCzeDiPq8/ySLPlNEHFs8L9YbrFLwKyhY/ltVaOaiS9bzPaRwfj7WToEeZIS0Kv HpGH7WoeT5/mwLc62t06E9N6tG0legSl2bQ8kMbUx/f85wyNvJp90/Wkha2/oVqxJm s0Y4WyTCutQmlYtdj4gXRmBkXIiy+JqXohMHdAd7xj4udzjm41h2kIsRgPsXIDJaL+ EmZGlXj+aophA== Date: Tue, 18 Aug 2026 10:24:11 -0700 From: Eric Biggers To: Arnd Bergmann Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Ard Biesheuvel , Daniel Borkmann , Catalin Marinas , Alexei Starovoitov , Oliver Upton , Herbert Xu , Marc Zyngier , Linus Walleij Subject: Re: [PATCH 00/12] arm64: Remove unused big-endian support Message-ID: <20260818172411.GB2249@quark> References: <20260811140132.22778-1-will@kernel.org> <6632712f-7782-4580-84c0-62124a016f46@app.fastmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6632712f-7782-4580-84c0-62124a016f46@app.fastmail.com> On Tue, Aug 11, 2026 at 05:11:47PM +0200, Arnd Bergmann wrote: > I had not expected the removal to come this soon, but I'm not > complaining about that. I assume you are planning this for 7.4, > leaving 7.3-LTS to still have the code in case someone wants to > still use it, right? It's already been BROKEN (and thus is dead code) since v6.18. Some of that dead code has already been removed. Other code never actually worked correctly on big endian in the first place and no one ever cared. Acked-by: Eric Biggers - Eric