Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <bjorn.topel@intel.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>

authored by

Björn Töpel and committed by
Paul E. McKenney
d25fba0e 6efb943b

+1 -1
+1 -1
tools/memory-model/Documentation/explanation.txt
··· 2510 2510 smp_mb__after_atomic() orders po-earlier atomic updates and 2511 2511 the events preceding them against all po-later events; 2512 2512 2513 - smp_mb_after_spinlock() orders po-earlier lock acquisition 2513 + smp_mb__after_spinlock() orders po-earlier lock acquisition 2514 2514 events and the events preceding them against all po-later 2515 2515 events. 2516 2516