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 6AD653914E7; Fri, 13 Mar 2026 12:12:50 +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=1773403972; cv=none; b=TuLTHGtjX5k3engj8UhLBNCv+GbBXfLyLd1PqWhudzf2hzXPcQWH5GTXTyrNli/jTvKtFLyFrPimde/w7kToCtj9JGRKCwH8vltDZfDuMnaaeSepgFZlSey+c4cjei3ei5fWbBbaFuIrW4P15ZoVjdU2b3dFArb3+uk2ddg8FnA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773403972; c=relaxed/simple; bh=WRdpW/rDTddEGMXURl4BSpPxlDy3sE/k4Qjo8ZFsYv4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=PJBR/yZ7yhke1mtKnU54FJqbFSfvyk6avrJn8JojfYQPlTsCPc7FIJFThxp60TwRlQf9j+5C7QgrbjVoLRY8rdtuNn9uCwIWRPFUocpWB5J/kt3qpwZHvHg6edxju7YWx2+TAktPDwdqY1cdClBIOpRBbQwqbRD85vV2iGpA+9o= 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=NSW/Ipve; 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="NSW/Ipve" 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-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding: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=yqJfjj5bSFwQr78REbDblBhmHQrXei/rYwDnGeis3LI=; b=NSW/IpveyLpEwFh9iVvLICuEa/ V5L5gDT9bi0fyQok+5GH3TDAHnytb8vPzUXEWkFPt8n/4/rBGmdP+V24Z83zp67hvy6IWfzXGZryL BZosecN7q0b5gjVntuE6X1OzPFKHoAa2RfBaKV2DrlBF67Q/bDS8O+0E7wYq0ngi3AlAH7bmW3LkI ud8QqeD9XJoFouriJkrANerEpg1UDnJrgyNvFW+VTa/O2Tue9uN8T8okEXm84tmjkiZXYb9RIIs3H pBQTdAjFiHv9s4DuM4kvgNOl4FL290pQ56RNH9KG2AB0DYDBUMDtzTQ1UL/RN4gOUA2qAeZLuDRoL 3S0HGyHA==; Received: from shell.armlinux.org.uk ([fd8f:7570:feb6:1:5054:ff:fe00:4ec]:46278) 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 1w11Nl-000000000tT-1RFx; Fri, 13 Mar 2026 12:12:45 +0000 Received: from linux by shell.armlinux.org.uk with local (Exim 4.98.2) (envelope-from ) id 1w11Nh-000000008Cx-2mts; Fri, 13 Mar 2026 12:12:41 +0000 Date: Fri, 13 Mar 2026 12:12:41 +0000 From: "Russell King (Oracle)" To: Andrew Lunn Cc: Alexandre Torgue , Alexei Starovoitov , Andrew Lunn , bpf@vger.kernel.org, Daniel Borkmann , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Jesper Dangaard Brouer , linux-arm-kernel@lists.infradead.org, linux-stm32@st-md-mailman.stormreply.com, netdev@vger.kernel.org, Paolo Abeni , Stanislav Fomichev Subject: Re: [PATCH net-next v3 11/15] net: stmmac: add helper to get hardware transmit descriptor Message-ID: References: Precedence: bulk X-Mailing-List: netdev@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: Sender: Russell King (Oracle) On Fri, Mar 13, 2026 at 09:51:53AM +0000, Russell King (Oracle) wrote: > Provide a helper to get the hardware transmit descriptor that takes > account of whether extended format and TBS are being used, returning > the base struct dma_desc pointer. This avoids multiple instances where > these tests are open coded. > > Signed-off-by: Russell King (Oracle) Damn it, I merged the fix for the AI review on this patch into patch 13 rather than this patch. :/ -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!