From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 294E81DE4EF; Fri, 1 May 2026 00:59:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777597188; cv=none; b=HKOoBRCaVNk5T0TXuDblAyfSC61tu5Es4AwCrF2rHoTP41D0vFEgX0TEzmagxez/xj/6QtutuZzMaEfvSdeqE/yMfa6nsgZLx5JqEhZI6sNr+g0M0nFprj+32Ma8PyrJl/hU1FntnZHBhaauyznXDiW9VQ8NZSfVibU0qGo/j8Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777597188; c=relaxed/simple; bh=YW/4yuQ6/5Cle0pEbg+zkbBo3GeqgoK5U8Q6OCextFw=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=G6s7quWVBwLyLl8prfUEKqQaaz7ItxPIO3v+MoBpMmg2Y0n3L1OnkD/N4DbbL5pV3UOmL968IQSQ1k79fV7o7SdZ2VvKMPB2TAEIhs05/JQ870QFjD11VPQczL7R7XJ4rhdTADFoYfQ0O/0Wc3aJSnHRXlpbNvuMcJU0JuzN9fs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=nmfxkNGm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="nmfxkNGm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 46324C2BCB3; Fri, 1 May 2026 00:59:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1777597187; bh=YW/4yuQ6/5Cle0pEbg+zkbBo3GeqgoK5U8Q6OCextFw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=nmfxkNGm2r9Krz5Ob+1cT7UfS4f9OwLzrtqLoIZHcydQJRKKyeNa4zoHSpU7LJ377 Znmdpw0EiGbIs5BKLmAtkRPtPtFHDBRke4rphx9R3lWYSD8NXGSCSvJWXN+mNJElQ8 JMmNwNmJ4ekRxyb5k6uXINV6wjd65+0TUER/5quO/ElS+04uqBCmIgGySzOhtJi/cn XyeWQ1pGaPS0cvspJM/gJrXKkI2YpLCBmkxs3t2bpKRGBT8jGusQMvUYPQpQhHVZW8 iDSryEqVSHqX3S+e/bSs7vjqnf9n8XjzcWom5xiBxnVAoSZCAp/EnvMjlJq9BMq2qu IaEgUbzF40uoQ== Date: Thu, 30 Apr 2026 17:59:45 -0700 From: Jakub Kicinski To: Bobby Eshleman Cc: Andrew Lunn , "David S. Miller" , Eric Dumazet , Paolo Abeni , Simon Horman , Jonathan Corbet , Shuah Khan , Alex Shi , Yanteng Si , Dongliang Mu , Michael Chan , Pavan Chebbi , Joshua Washington , Harshitha Ramamurthy , Saeed Mahameed , Tariq Toukan , Mark Bloch , Leon Romanovsky , Alexander Duyck , kernel-team@meta.com, Daniel Borkmann , Nikolay Aleksandrov , Shuah Khan , netdev@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org, bpf@vger.kernel.org, linux-kselftest@vger.kernel.org, Stanislav Fomichev , Mina Almasry , Bobby Eshleman Subject: Re: [PATCH net-next 00/11] net: devmem: support devmem with netkit devices Message-ID: <20260430175945.476734ca@kernel.org> In-Reply-To: <20260428-tcp-dm-netkit-v1-0-719280eba4d2@meta.com> References: <20260428-tcp-dm-netkit-v1-0-719280eba4d2@meta.com> 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-Transfer-Encoding: 7bit On Tue, 28 Apr 2026 15:41:57 -0700 Bobby Eshleman wrote: > net: add netmem_tx modes that indicate dma capability > net: bnxt: convert netmem_tx from bool to NETMEM_TX_DMA enum > gve: convert netmem_tx from bool to NETMEM_TX_DMA enum > net/mlx5e: convert netmem_tx from bool to NETMEM_TX_DMA enum > eth: fbnic: convert netmem_tx from bool to NETMEM_TX_DMA enum > netkit: set NETMEM_TX_NO_DMA for unreadable skb passthrough > net: devmem: support TX over NETMEM_TX_NO_DMA devices I think it looks reasonable over all, but the assumption that rx lease implies tx queue does not seem great. Sounds like Daniel has that part covered tho :) When you post v2 - you can squash the driver patches into patch 1.