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 8A47F31352A for ; Mon, 19 Jan 2026 16:59:58 +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=1768841998; cv=none; b=Xf7aBdhETx/hRPjqgTGCA1tlJfKlQ41dpypq166kNk7uLHAJ8sRZEfbUCXIe4ZJYC/rSeiSGIkm3IDkm3NLuYz6TBRqZaTElwJx3NLuUbBNNupTDhWtvebDiebBdhgcC8YhDulUSintCraTes0JW+FBC6q0EvRUPR2rwKnGf/MU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768841998; c=relaxed/simple; bh=FtAJLs5K+tkaZN2nivJXSO+M2Dqx7b72bwOoEmS8hVg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=N6B4pNB/GpfN/MbHjVGCWRv3A2HVsE3Wo7J9s2xJ/JcpjzS1VFjLt6oJTfndbfVbo9UYikCReiS5I1vHl6JhPUTw5VNJWhS7ZaF7eEyN4e3sr4e6UTRIKOtAZvH22bhZJoCKkLfPJ1YUuwZ08tAN60wgaPnb1S+y22LZqDmWxyk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=lnVLjNiT; 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="lnVLjNiT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AD3C9C19424; Mon, 19 Jan 2026 16:59:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768841998; bh=FtAJLs5K+tkaZN2nivJXSO+M2Dqx7b72bwOoEmS8hVg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lnVLjNiTpdK7G2p16f05yMvnnBQqkaH30IBmePClziLRca+yrTd+Q7VgQELRv9YYI J+ze/4qRcaPCqq5M1HU2c+7fvAEuoj3J7DjFWqUzpsxcpoF+B1HHhozRx/WFiy4h12 BBk9oYI3Ou4BFUOw0xmhb7A/wV0A6rAVaFNQKlR6+kpdci0OqyJwqteOd/1vuRGc18 F4taXpDPWrdb9gldjXIg4wsrYFofE1PLDyiyc3moPExVZ5MQzv4zHAuQJN95txb8Nh ZHhtLPrzzrBRT65I0YaxYxBiDB8VxGtzCQlf9TqDCqdmTbYzzOiF0OxbHfm80sCvQ+ mb6+qGdE3rX3Q== Date: Mon, 19 Jan 2026 16:59:54 +0000 From: Simon Horman To: Eric Dumazet Cc: "David S. Miller" , Jakub Kicinski , Paolo Abeni , David Ahern , netdev@vger.kernel.org, eric.dumazet@gmail.com Subject: Re: [PATCH net-next 0/8] ipv6: more data-race annotations Message-ID: References: <20260115094141.3124990-1-edumazet@google.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-Disposition: inline In-Reply-To: <20260115094141.3124990-1-edumazet@google.com> On Thu, Jan 15, 2026 at 09:41:33AM +0000, Eric Dumazet wrote: > Inspired by one unrelated syzbot report. > > This series adds missing (and boring) data-race annotations in IPv6. > > Only the first patch adds sysctl_ipv6_flowlabel group > to speedup ip6_make_flowlabel() a bit. Thanks Eric, This all looks good to me. And thanks for including the const updates. For the series: Reviewed-by: Simon Horman