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 4B3D91DB13A; Mon, 18 May 2026 19:36:37 +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=1779132998; cv=none; b=gXww8pimhU4u57iSdZCtJMp+yHILEPlxtj61B+8kKFEvfOdaIYDyY4Vt7buKWCWDRb7l9q81lbpm1r18yg6aOYIJ3Z9dNnE7M8W43lB0JXhfgurE061X4f0fc9Xy/fs+IqUxCKo+YFBHfkuzRTJEtNjxtw0nG0BpK7PCi+IIR+I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779132998; c=relaxed/simple; bh=Wi4BvHbnLogHwDnFAOY65k7rUtfMvJIPCaPQGLK8bGM=; h=Date:Message-ID:From:To:Cc:Subject:In-Reply-To:References; b=qfHNUpXLhMsFltuTAOjvBsFlBTq3V5qOqao2fYmOPdXcKkI528hfdN4GiMogGZbUyM/8rws44/DaEm9VN+BIbmsoEATFqXgxal5X5daP3dCOktelAORQgwfi06hhyVNiFl3X5jVqPeAZ0XUsf8j2W7xsNlgfddENf7I8OVFUErY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=nHUbWISf; 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="nHUbWISf" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9D39DC2BCC9; Mon, 18 May 2026 19:36:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1779132997; bh=Wi4BvHbnLogHwDnFAOY65k7rUtfMvJIPCaPQGLK8bGM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=nHUbWISfDDPMmeTskxlUgDj20zlZf5ueVVBgVCkkys/td237mdFYzqbo+3e2bKrP7 +I6JaY27VuRSK6VaJc0oAH6tC29ivAtndPbkgjI9eV967MvzipLcFuj5JLNgXhh+mW CZ9C1ihR87awMWUbC6RDLrjiDLt5NPSmseTMxVMXVSTL7K32VAn/RxvxamnBkoqy17 a7XZvINC1MAYhvNAVPTkjob5f58PPVKUsCR+hZxb628znZfT5lp1eAXkpEt657oTLn gkhWX7RSTVep0I5Ayg9VVCl2sTYfMQeM69J2pVwjQPO24a8jxhS+YAw96uwf09snN5 AwY37XiJh6aKA== Date: Mon, 18 May 2026 09:36:36 -1000 Message-ID: <64f59b64664f769661a8b8cd587c85f8@kernel.org> From: Tejun Heo To: Qing Ming Cc: Josef Bacik , Jens Axboe , Johannes Weiner , Michal Koutný , Michal Hocko , Roman Gushchin , Shakeel Butt , Muchun Song , Andrew Morton , Alexei Starovoitov , Hao Luo , Yosry Ahmed , cgroups@vger.kernel.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, bpf@vger.kernel.org Subject: Re: [PATCH v2] cgroup/rstat: validate cpu before css_rstat_cpu() access In-Reply-To: <20260516070849.106141-1-a0yami@mailbox.org> References: <20260515122952.59209-1-a0yami@mailbox.org> <20260516070849.106141-1-a0yami@mailbox.org> Precedence: bulk X-Mailing-List: linux-block@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Hello, > Qing Ming (1): > cgroup/rstat: validate cpu before css_rstat_cpu() access Applied to cgroup/for-7.1-fixes. In hindsight, we should have added a separate kfunc wrapper from the start instead of tagging css_rstat_updated() with __bpf_kfunc directly, which would have avoided the rename. Oh well, it is what it is. Thanks. -- tejun