From mboxrd@z Thu Jan 1 00:00:00 1970 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 553DDC4167B for ; Thu, 14 Dec 2023 06:20:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235192AbjLNGUa (ORCPT ); Thu, 14 Dec 2023 01:20:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45374 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230251AbjLNGU0 (ORCPT ); Thu, 14 Dec 2023 01:20:26 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6D2A0121 for ; Wed, 13 Dec 2023 22:20:28 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPS id F0B1EC433CC; Thu, 14 Dec 2023 06:20:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702534828; bh=+vkxHeCGMNypV4HTfFOZ2Yy/60cFLbQw3F9hivio95U=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=XCwoc/9WTOKFFdAICIMqPHMjv6oeO4Pp+v7+7n/BcwEpfIUwCaQGC1TyO90tc3s+F 4iMuFSonb7td1SNtF1ARcta6HO3szQxo/eTWA3PWgh1n9ndKRu3EGh+nxdxwJCDwEF C5wbcDdHDR9kDvws7qfFo2ZK3IFMZukwcHNhYfnGRauUxTzKDGsAZUwkEJjVzYYniB rd8UTiTCDeYkElN+6hTQ17XC95nHuKkDorHWKjNxvgot4aPi0xBRyLLQeDnMf+uifL xSTQdlfLVS9vWPcdZDdUGFtsUGZzqb7Z5spstpB1oT9YsbKWHGPQUAatOOPdI3jqXx PsahGbgOBc0ag== Received: from aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (localhost.localdomain [127.0.0.1]) by aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (Postfix) with ESMTP id D40E9DD4EFB; Thu, 14 Dec 2023 06:20:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [net-next v1 00/16] Device Memory TCP From: patchwork-bot+netdevbpf@kernel.org Message-Id: <170253482786.28524.10625748175644260187.git-patchwork-notify@kernel.org> Date: Thu, 14 Dec 2023 06:20:27 +0000 References: <20231208005250.2910004-1-almasrymina@google.com> In-Reply-To: <20231208005250.2910004-1-almasrymina@google.com> To: Mina Almasry Cc: shailend@google.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-arch@vger.kernel.org, linux-kselftest@vger.kernel.org, bpf@vger.kernel.org, linux-media@vger.kernel.org, dri-devel@lists.freedesktop.org, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, corbet@lwn.net, jeroendb@google.com, pkaligineedi@google.com, hawk@kernel.org, ilias.apalodimas@linaro.org, arnd@arndb.de, dsahern@kernel.org, willemdebruijn.kernel@gmail.com, shuah@kernel.org, sumit.semwal@linaro.org, christian.koenig@amd.com, linyunsheng@huawei.com, hramamurthy@google.com, shakeelb@google.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Thu, 7 Dec 2023 16:52:31 -0800 you wrote: > Major changes in v1: > -------------- > > 1. Implemented MVP queue API ndos to remove the userspace-visible > driver reset. > > 2. Fixed issues in the napi_pp_put_page() devmem frag unref path. > > [...] Here is the summary with links: - [net-next,v1,01/16] net: page_pool: factor out releasing DMA from releasing the page https://git.kernel.org/netdev/net-next/c/c3f687d8dfeb - [net-next,v1,02/16] net: page_pool: create hooks for custom page providers (no matching commit) - [net-next,v1,03/16] queue_api: define queue api (no matching commit) - [net-next,v1,04/16] gve: implement queue api (no matching commit) - [net-next,v1,05/16] net: netdev netlink api to bind dma-buf to a net device (no matching commit) - [net-next,v1,06/16] netdev: support binding dma-buf to netdevice (no matching commit) - [net-next,v1,07/16] netdev: netdevice devmem allocator (no matching commit) - [net-next,v1,08/16] memory-provider: dmabuf devmem memory provider (no matching commit) - [net-next,v1,09/16] page_pool: device memory support (no matching commit) - [net-next,v1,10/16] page_pool: don't release iov on elevanted refcount (no matching commit) - [net-next,v1,11/16] net: support non paged skb frags (no matching commit) - [net-next,v1,12/16] net: add support for skbs with unreadable frags (no matching commit) - [net-next,v1,13/16] tcp: RX path for devmem TCP (no matching commit) - [net-next,v1,14/16] net: add SO_DEVMEM_DONTNEED setsockopt to release RX frags (no matching commit) - [net-next,v1,15/16] net: add devmem TCP documentation (no matching commit) - [net-next,v1,16/16] selftests: add ncdevmem, netcat for devmem TCP (no matching commit) You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html