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 5F08520297C for ; Fri, 15 May 2026 00:21:18 +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=1778804478; cv=none; b=r61SfER6dQrDBp+0vcmaGZd6QLoQfaaw/L0e/tXEn/dOb+2M0CaqtcoKLJ+3Pmy5/U47XDZHAs3F44rDrlfwStsPh0dtfJT83HyMF58QRaXWPvaak1t+OJ625uey9Ubmznri6Xfl2j2YaS8Ap6aNMA5923L/SaU8SG5U7qwMs3I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778804478; c=relaxed/simple; bh=nb4FiqZJBnImGOG9/gEjUlNq5dYB7k+I+TJzlXSp/z0=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=Wgw11zrEoxz4PiEgT/a+TKNzih68/o5O34tdLn+7+FXUt1G2xATLQ6VlbhurbBJCPJKYNSwoFK6Hc4mYAk7gNOYJeA0LRXYCwHFNse/6QU0kCEqPNf6zBGFfP1JPfuUXYWxbO4RbU7arz0FEHQB+x1+p5SjBAbRmYdkpfxYEWKc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=V/7EEjSv; 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="V/7EEjSv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7988C2BCB3; Fri, 15 May 2026 00:21:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778804478; bh=nb4FiqZJBnImGOG9/gEjUlNq5dYB7k+I+TJzlXSp/z0=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=V/7EEjSv9S4/WDyDKz76efpNutR5uu5u5kGezkBr0eD3LQ0qBAHMRuIwjm8MemxK6 t6oT5w+rIRNv9W+rkYI4FMPKJJgUbIikZiMv/ABgkGXpC2KfoKFSw0lDG7o9/PXUb3 6fPLZJs9UR4H3xsOnoRBJF2cstM3iAe30+0L9IicguSCZWl0d7AI6fKsoXQLWXwmPt +LvxWiOVsglXkPAehWwojpufLavYH2Aflxpyc3JWEjGyfsy+57uPakNzo2ttb53OdV 46yp/nKeWKiwYpE6z0i8Z2riLQ8aWH77nasy/xF1anNdBFrB8I5714oE0dyMKCoxaM sA0trpEERHNaA== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id B9DE139E4DB3; Fri, 15 May 2026 00:20:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH net-next 0/3] net/sched: changes around qdisc_qstats_qlen_backlog() From: patchwork-bot+netdevbpf@kernel.org Message-Id: <177880442228.134878.3806192923623585975.git-patchwork-notify@kernel.org> Date: Fri, 15 May 2026 00:20:22 +0000 References: <20260513080853.1383975-1-edumazet@google.com> In-Reply-To: <20260513080853.1383975-1-edumazet@google.com> To: Eric Dumazet Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com, horms@kernel.org, jhs@mojatatu.com, victor@mojatatu.com, jiri@resnulli.us, idosch@nvidia.com, dsahern@kernel.org, toke@toke.dk, netdev@vger.kernel.org, eric.dumazet@gmail.com Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Wed, 13 May 2026 08:08:50 +0000 you wrote: > First patch makes clear qdisc_qstats_qlen_backlog() runs locklessly. > > Second patch changes ioam6 to not acquire qdisc spinlock anymore. > > Third pach adds missing READ_ONCE()/WRITE_ONCE() annotations in hfsc. > > htb still needs fixes, I will take care of them separately. > > [...] Here is the summary with links: - [net-next,1/3] net/sched: qdisc_qstats_qlen_backlog() runs locklessly https://git.kernel.org/netdev/net-next/c/72a1795999df - [net-next,2/3] net: ioam6: no longer acquire qdisc spinlock while calling qdisc_qstats_qlen_backlog() https://git.kernel.org/netdev/net-next/c/d3f3c8a4d1f6 - [net-next,3/3] net/sched: sch_hfsc: annotate data-races in hfsc_dump_class_stats() https://git.kernel.org/netdev/net-next/c/e300c7d470ad You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html