From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pandora.armlinux.org.uk (pandora.armlinux.org.uk [78.32.30.218]) (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 2342E365A11 for ; Fri, 6 Feb 2026 13:29:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=78.32.30.218 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770384577; cv=none; b=LrWonrtjyZTgfymPekmqzB3JKyDHV8ew+5hM4Udzhv/zy80ZEEtOVX0pyW5QjKLYMKfCwDgNsMcTgLVtxezilZELDOIuLABHMBSgx02GYUlJao9GfMhNFxE5r9n7k5s3rToSQ/wjfCS0doYFeGNCFqmTTbLliB/gn4PqrMTWb3s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770384577; c=relaxed/simple; bh=heOpVHkqYN5gqtC7rxj0W5zVlEmgvmtLb55x5uAfDQM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=HHDi6mdkJdu4985ATFRI+eINU6XOSERjVChBqJ1+UgHxJ7Glaof13tW6Yml9ikyTUMTxeoR+UIv7zz/r17d1VGHO3hmgY4vp5Fbzu19H36sGF6CdqrQYW2I5rx9nkFW9lKO3HU5I3Te8twXIMz21IwFfzL5OeyyagbCv1FHGBlU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=armlinux.org.uk; spf=none smtp.mailfrom=armlinux.org.uk; dkim=pass (2048-bit key) header.d=armlinux.org.uk header.i=@armlinux.org.uk header.b=MDkhhR0H; arc=none smtp.client-ip=78.32.30.218 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=armlinux.org.uk Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=armlinux.org.uk Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=armlinux.org.uk header.i=@armlinux.org.uk header.b="MDkhhR0H" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=armlinux.org.uk; s=pandora-2019; h=Sender:In-Reply-To: Content-Transfer-Encoding:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=3VYDcNsu3l2vYO7esn8OofQyBRc5bqWat8FlNo6FkqQ=; b=MDkhhR0Hs4tAi8OLzPWnjgDWMK j88AUMTi3Hd6Ql5Zo9dIAg4ZSvFFRSLqb0USZpzQZUkeiKDz5jWW73RNClYdhUMmMW6xlgcTBgIJJ xlvsRBvjKhvwMNyeIbjICl90oBUx5SsHgYowILvfez0sPrQ5uycOVJwdHXE/EXWYpI6kSOAB/ZRiw 1mxfk0RgKUjwvwK8OnreCZ4NKs+ODy3pcDp/nPhcm+1jDTSL5PliGtH0BpHbdys31PZQvRDJRRrBS hNdqDJJ5USOqyKAxdUo/alJCMbfNWH+ZpM6uYsvACdmPnoNuNyvhhDH/q3v/xGnRLy7DU/QumFkM5 rDf41kdw==; Received: from shell.armlinux.org.uk ([fd8f:7570:feb6:1:5054:ff:fe00:4ec]:50064) by pandora.armlinux.org.uk with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1voLtt-00000000882-0uKm; Fri, 06 Feb 2026 13:29:33 +0000 Received: from linux by shell.armlinux.org.uk with local (Exim 4.98.2) (envelope-from ) id 1voLtr-000000007O8-3yEW; Fri, 06 Feb 2026 13:29:31 +0000 Date: Fri, 6 Feb 2026 13:29:31 +0000 From: "Russell King (Oracle)" To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann Subject: Re: [PATCH v2] ARM: Implement ARCH_HAS_CC_CAN_LINK Message-ID: References: <20260206-cc-can-link-arm-v2-1-290cbf369fb6@linutronix.de> 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=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260206-cc-can-link-arm-v2-1-290cbf369fb6@linutronix.de> Sender: Russell King (Oracle) On Fri, Feb 06, 2026 at 02:02:38PM +0100, Thomas Weißschuh wrote: > The generic CC_CAN_LINK detection does not handle different byte orders. > This may lead to userprogs which are not actually runnable on the target > kernel. > > Use architecture-specific logic supporting byte orders instead. > > Signed-off-by: Thomas Weißschuh Damn, I've recently merged your v1 patch. Can you send a follow-up patch to my patch system please? Thanks. -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!