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 lists.zx2c4.com (lists.zx2c4.com [165.227.139.114]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A69E9D10F41 for ; Mon, 18 Nov 2024 03:22:51 +0000 (UTC) Received: by lists.zx2c4.com (ZX2C4 Mail Server) with ESMTP id 04bbec80; Mon, 18 Nov 2024 01:38:37 +0000 (UTC) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lists.zx2c4.com (ZX2C4 Mail Server) with ESMTPS id 4684aef8 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for ; Tue, 15 Oct 2024 13:40:28 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id E51EB5C58C6; Tue, 15 Oct 2024 13:40:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C1D07C4CEC6; Tue, 15 Oct 2024 13:40:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1728999626; bh=+eg5Ogets9SiLlYwP2uE1cyuHarfu0eMJpCc1LNOyZk=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=uX00nqRbj0TEG1Tz8shbGOT2WxuN/MzsJ0/O8D6fMk7nTY7nynwkrPoV5Izq1912G MCNxilzGTiCcfUAS5pjSXwW6q3cRG/BW6D6YbtnmlO0q+fhZtWAV8iW5Tl912r9gZP jE929Z//XzSjfIYVBdbbV+yN6bRsMcoaXu9P5SmP/HpGUsX8oWRvpS3y/CHIagsxmZ wSs02+S5+DmmcEkoZwbxu00ArbFRTvF91bDqH9pPk66sN6FjSlgd1oE0CGyqAvnLq/ xoAmzPiMCVa7yA7fqt68pGzpMEomnxnAVW+/H1RaLmsld8vRk3GlFiM5j84R4We9bm NTYamxloL6Fqw== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 33B943809A8A; Tue, 15 Oct 2024 13:40:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH 00/17] replace call_rcu by kfree_rcu for simple kmem_cache_free callback From: patchwork-bot+netdevbpf@kernel.org Message-Id: <172899963173.1165800.13282848624565322990.git-patchwork-notify@kernel.org> Date: Tue, 15 Oct 2024 13:40:31 +0000 References: <20241013201704.49576-1-Julia.Lawall@inria.fr> In-Reply-To: <20241013201704.49576-1-Julia.Lawall@inria.fr> To: Julia Lawall Cc: linux-nfs@vger.kernel.org, kernel-janitors@vger.kernel.org, vbabka@suse.cz, paulmck@kernel.org, tom@talpey.com, Dai.Ngo@oracle.com, okorniev@redhat.com, neilb@suse.de, linux-can@vger.kernel.org, bridge@lists.linux.dev, b.a.t.m.a.n@lists.open-mesh.org, linux-kernel@vger.kernel.org, wireguard@lists.zx2c4.com, netdev@vger.kernel.org, ecryptfs@vger.kernel.org, linux-block@vger.kernel.org, npiggin@gmail.com, christophe.leroy@csgroup.eu, naveen@kernel.org, maddy@linux.ibm.com, linuxppc-dev@lists.ozlabs.org, kvm@vger.kernel.org, netfilter-devel@vger.kernel.org, coreteam@netfilter.org X-BeenThere: wireguard@lists.zx2c4.com X-Mailman-Version: 2.1.30rc1 Precedence: list List-Id: Development discussion of WireGuard List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: wireguard-bounces@lists.zx2c4.com Sender: "WireGuard" Hello: This series was applied to netdev/net-next.git (main) by Simon Wunderlich : On Sun, 13 Oct 2024 22:16:47 +0200 you wrote: > Since SLOB was removed and since > commit 6c6c47b063b5 ("mm, slab: call kvfree_rcu_barrier() from kmem_cache_destroy()"), > it is not necessary to use call_rcu when the callback only performs > kmem_cache_free. Use kfree_rcu() directly. > > The changes were done using the following Coccinelle semantic patch. > This semantic patch is designed to ignore cases where the callback > function is used in another way. > > [...] Here is the summary with links: - [01/17] wireguard: allowedips: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [02/17] ipv4: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [03/17] inetpeer: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [04/17] ipv6: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [05/17] xfrm6_tunnel: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [06/17] batman-adv: replace call_rcu by kfree_rcu for simple kmem_cache_free callback https://git.kernel.org/netdev/net-next/c/356c81b6c494 - [08/17] net: bridge: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [10/17] can: gw: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [14/17] kcm: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [15/17] netfilter: nf_conncount: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [16/17] netfilter: expect: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) - [17/17] netfilter: xt_hashlimit: replace call_rcu by kfree_rcu for simple kmem_cache_free callback (no matching commit) You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html