From: Björn Töpel Date: Fri, 5 Mar 2021 10:28:23 +0000 (+0100) Subject: tools/memory-model: Fix smp_mb__after_spinlock() spelling X-Git-Tag: v5.14-rc1~79^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d25fba0e34742f19b5ca307c60c4d260ca5a754a;p=thirdparty%2Fkernel%2Flinux.git tools/memory-model: Fix smp_mb__after_spinlock() spelling A misspelled git-grep regex revealed that smp_mb__after_spinlock() was misspelled in explanation.txt. This commit adds the missing "_". Fixes: 1c27b644c0fd ("Automate memory-barriers.txt; provide Linux-kernel memory model") [ paulmck: Apply Alan Stern commit-log feedback. ] Signed-off-by: Björn Töpel Signed-off-by: Paul E. McKenney --- diff --git a/tools/memory-model/Documentation/explanation.txt b/tools/memory-model/Documentation/explanation.txt index f9d610d5a1a4c..5d72f3112e565 100644 --- a/tools/memory-model/Documentation/explanation.txt +++ b/tools/memory-model/Documentation/explanation.txt @@ -2510,7 +2510,7 @@ they behave as follows: smp_mb__after_atomic() orders po-earlier atomic updates and the events preceding them against all po-later events; - smp_mb_after_spinlock() orders po-earlier lock acquisition + smp_mb__after_spinlock() orders po-earlier lock acquisition events and the events preceding them against all po-later events.