From: Costa Shulyupin Date: Fri, 1 May 2026 04:38:46 +0000 (+0300) Subject: docs: housekeeping: Fix struct member access in code example X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=696ce7ca20f5269ccef828663c4272b72be88ac3;p=thirdparty%2Fkernel%2Flinux.git docs: housekeeping: Fix struct member access in code example No such array housekeeping_cpumasks Fix to housekeeping.cpumasks. Signed-off-by: Costa Shulyupin Reviewed-by: Frederic Weisbecker Signed-off-by: Jonathan Corbet Message-ID: <20260501043855.980567-1-costa.shul@redhat.com> --- diff --git a/Documentation/core-api/housekeeping.rst b/Documentation/core-api/housekeeping.rst index 92c6e53cea755..ccb0a88b9cb36 100644 --- a/Documentation/core-api/housekeeping.rst +++ b/Documentation/core-api/housekeeping.rst @@ -99,7 +99,7 @@ the same RCU read side critical section. A typical layout example would look like this on the update side (``housekeeping_update()``):: - rcu_assign_pointer(housekeeping_cpumasks[type], trial); + rcu_assign_pointer(housekeeping.cpumasks[type], trial); synchronize_rcu(); flush_workqueue(example_workqueue);