/* SPDX-License-Identifier: GPL-2.0 */ /* spinlock.h: 64-bit Sparc spinlock support. * * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) */ #ifndef __SPARC64_SPINLOCK_H #define __SPARC64_SPINLOCK_H #ifndef __ASSEMBLY__ #include <asm/processor.h> #include <asm/barrier.h> #include <asm/qrwlock.h> #include <asm/qspinlock.h> #define arch_read_lock_flags(p, f) arch_read_lock(p) #define arch_write_lock_flags(p, f) arch_write_lock(p) #define arch_spin_relax(lock) cpu_relax() #define arch_read_relax(lock) cpu_relax() #define arch_write_relax(lock) cpu_relax() #endif /* !(__ASSEMBLY__) */ #endif /* !(__SPARC64_SPINLOCK_H) */Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Sam Ravnborg | 34 | 50.00% | 1 | 11.11% |
| Robin Holt | 14 | 20.59% | 1 | 11.11% |
| Babu Moger | 6 | 8.82% | 2 | 22.22% |
| Peter Zijlstra | 6 | 8.82% | 1 | 11.11% |
| Thomas Gleixner | 5 | 7.35% | 2 | 22.22% |
| Heiko Carstens | 2 | 2.94% | 1 | 11.11% |
| Greg Kroah-Hartman | 1 | 1.47% | 1 | 11.11% |
| Total | 68 | 100.00% | 9 | 100.00% |