blob: 0abc6b6062fbb1c203bed0f025e05e82ac3eea24 [file] [log] [blame]
Waiman Long70af2f82014-02-03 13:18:49 +01001#ifndef __ASM_GENERIC_QRWLOCK_TYPES_H
2#define __ASM_GENERIC_QRWLOCK_TYPES_H
3
4#include <linux/types.h>
5#include <asm/spinlock_types.h>
6
7/*
8 * The queue read/write lock data structure
9 */
10
11typedef struct qrwlock {
12 atomic_t cnts;
Davidlohr Bueso6e1e5192015-09-14 00:37:22 -070013 arch_spinlock_t wait_lock;
Waiman Long70af2f82014-02-03 13:18:49 +010014} arch_rwlock_t;
15
16#define __ARCH_RW_LOCK_UNLOCKED { \
17 .cnts = ATOMIC_INIT(0), \
Davidlohr Bueso6e1e5192015-09-14 00:37:22 -070018 .wait_lock = __ARCH_SPIN_LOCK_UNLOCKED, \
Waiman Long70af2f82014-02-03 13:18:49 +010019}
20
21#endif /* __ASM_GENERIC_QRWLOCK_TYPES_H */