From: Paul E. McKenney Date: Wed, 13 Nov 2024 00:53:53 +0000 (-0800) Subject: srcu: Fix typo s/srcu_check_read_flavor()/__srcu_check_read_flavor()/ X-Git-Tag: v6.14-rc1~178^2^3~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfb07b07dda2a17feed96c80c5af85937fcd2e9c;p=thirdparty%2Fkernel%2Flinux.git srcu: Fix typo s/srcu_check_read_flavor()/__srcu_check_read_flavor()/ This commit fixes a typo in which a comment needed to have been updated from srcu_check_read_flavor() to __srcu_check_read_flavor(). Reported-by: Neeraj Upadhyay Closes: https://lore.kernel.org/all/b75d1fcd-6fcd-4619-bb5c-507fa599ee28@amd.com/ Signed-off-by: Paul E. McKenney Signed-off-by: Uladzislau Rezki (Sony) --- diff --git a/include/linux/srcutree.h b/include/linux/srcutree.h index 490aeecc6bb47..4e69f88bcab9f 100644 --- a/include/linux/srcutree.h +++ b/include/linux/srcutree.h @@ -258,7 +258,7 @@ static inline void srcu_check_read_flavor_lite(struct srcu_struct *ssp) if (likely(READ_ONCE(sdp->srcu_reader_flavor) & SRCU_READ_FLAVOR_LITE)) return; - // Note that the cmpxchg() in srcu_check_read_flavor() is fully ordered. + // Note that the cmpxchg() in __srcu_check_read_flavor() is fully ordered. __srcu_check_read_flavor(ssp, SRCU_READ_FLAVOR_LITE); }