aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/spinlock_types.h
blob: 1c51bd231e49416efb67fdf7619f3c1cdf9a1eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef _ASM_X86_SPINLOCK_TYPES_H
#define _ASM_X86_SPINLOCK_TYPES_H

#ifndef __LINUX_SPINLOCK_TYPES_H
# error "please don't include this file directly"
#endif

#include <linux/types.h>

#if (CONFIG_NR_CPUS < 256)
typedef u8  __ticket_t;
#else
typedef u16 __ticket_t;
#endif

#define TICKET_SHIFT	(sizeof(__ticket_t) * 8)
#define TICKET_MASK	((__ticket_t)((1 << TICKET_SHIFT) - 1))

typedef struct arch_spinlock {
	union {
		unsigned int slock;
		struct __raw_tickets {
			__ticket_t head, tail;
		} tickets;
	};
} arch_spinlock_t;

#define __ARCH_SPIN_LOCK_UNLOCKED	{ { .slock = 0 } }

#include <asm/rwlock.h>

#endif /* _ASM_X86_SPINLOCK_TYPES_H */