VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   35 Branches   59 Tags
author: Mark Rutland <mark.rutland@arm.com> 2018-09-04 11:48:25 +0100 committer: Ingo Molnar <mingo@kernel.org> 2018-11-01 11:00:36 +0100 commit: ace9bad4df2684f31cbfe8c4ce7a0f5d92b27925 parent: 01a14bda11add9dcd4a59200f13834d634559935
Commit Summary:
locking/atomics: Add common header generation files
Diffstat:
1 file changed, 7 insertions, 0 deletions
diff --git a/scripts/atomic/fallbacks/set_release b/scripts/atomic/fallbacks/set_release
new file mode 100644
index 000000000000..45bb5e0cfc08
--- /dev/null
+++ b/scripts/atomic/fallbacks/set_release
@@ -0,0 +1,7 @@
+cat <<EOF
+static inline void
+${atomic}_set_release(${atomic}_t *v, ${int} i)
+{
+	smp_store_release(&(v)->counter, i);
+}
+EOF