diff options
Diffstat (limited to 'include/asm-generic/mcs_spinlock.h')
| -rw-r--r-- | include/asm-generic/mcs_spinlock.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/asm-generic/mcs_spinlock.h b/include/asm-generic/mcs_spinlock.h new file mode 100644 index 000000000000..39c94012b88a --- /dev/null +++ b/include/asm-generic/mcs_spinlock.h @@ -0,0 +1,19 @@ +#ifndef __ASM_MCS_SPINLOCK_H +#define __ASM_MCS_SPINLOCK_H + +struct mcs_spinlock { + struct mcs_spinlock *next; + int locked; /* 1 if lock acquired */ + int count; /* nesting count, see qspinlock.c */ +}; + +/* + * Architectures can define their own: + * + * arch_mcs_spin_lock_contended(l) + * arch_mcs_spin_unlock_contended(l) + * + * See kernel/locking/mcs_spinlock.c. + */ + +#endif /* __ASM_MCS_SPINLOCK_H */ |
