aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/atomic/check-atomics.sh
diff options
context:
space:
mode:
authorMark Rutland <mark.rutland@arm.com>2021-07-13 11:52:51 +0100
committerPeter Zijlstra <peterz@infradead.org>2021-07-16 18:46:45 +0200
commite3d18cee258b898017b298b5b93f8134dd62aee3 (patch)
tree020739670ea01731b8f5510ecf28de6cac183432 /scripts/atomic/check-atomics.sh
parentlocking/atomic: remove ARCH_ATOMIC remanants (diff)
downloadlinux-dev-e3d18cee258b898017b298b5b93f8134dd62aee3.tar.xz
linux-dev-e3d18cee258b898017b298b5b93f8134dd62aee3.zip
locking/atomic: centralize generated headers
The generated atomic headers are only intended to be included directly by <linux/atomic.h>, but are spread across include/linux/ and include/asm-generic/, where people mnay be encouraged to include them. This patch centralizes them under include/linux/atomic/. Other than the header guards and hashes, there is no change to any of the generated headers as a result of this patch. Signed-off-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20210713105253.7615-4-mark.rutland@arm.com
Diffstat (limited to 'scripts/atomic/check-atomics.sh')
-rwxr-xr-xscripts/atomic/check-atomics.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/atomic/check-atomics.sh b/scripts/atomic/check-atomics.sh
index 9c7fbd4bcbce..0e7bab3eb0d1 100755
--- a/scripts/atomic/check-atomics.sh
+++ b/scripts/atomic/check-atomics.sh
@@ -14,9 +14,9 @@ if [ $? -ne 0 ]; then
fi
cat <<EOF |
-asm-generic/atomic-instrumented.h
-asm-generic/atomic-long.h
-linux/atomic-arch-fallback.h
+linux/atomic/atomic-instrumented.h
+linux/atomic/atomic-long.h
+linux/atomic/atomic-arch-fallback.h
EOF
while read header; do
OLDSUM="$(tail -n 1 ${LINUXDIR}/include/${header})"