blob: 96549abe88424d43f5b50d2b78cbe77de7b4607e [file] [log] [blame]
Nick Piggin2dc91ab2010-08-18 04:37:37 +10001/*
2 * Specialised local-global spinlock. Can only be declared as global variables
3 * to avoid overhead and keep things simple (and we don't want to start using
4 * these inside dynamically allocated structures).
5 *
6 * "local/global locks" (lglocks) can be used to:
7 *
8 * - Provide fast exclusive access to per-CPU data, with exclusive access to
9 * another CPU's data allowed but possibly subject to contention, and to
10 * provide very slow exclusive access to all per-CPU data.
11 * - Or to provide very fast and scalable read serialisation, and to provide
12 * very slow exclusive serialisation of data (not necessarily per-CPU data).
13 *
14 * Brlocks are also implemented as a short-hand notation for the latter use
15 * case.
16 *
17 * Copyright 2009, 2010, Nick Piggin, Novell Inc.
18 */
19#ifndef __LINUX_LGLOCK_H
20#define __LINUX_LGLOCK_H
21
22#include <linux/spinlock.h>
23#include <linux/lockdep.h>
24#include <linux/percpu.h>
Srivatsa S. Bhate30e2fd2011-12-22 02:45:29 +053025#include <linux/cpu.h>
Andi Kleeneea62f82012-05-08 13:32:24 +093026#include <linux/notifier.h>
Nick Piggin2dc91ab2010-08-18 04:37:37 +100027
Nick Piggin2dc91ab2010-08-18 04:37:37 +100028#ifdef CONFIG_DEBUG_LOCK_ALLOC
29#define LOCKDEP_INIT_MAP lockdep_init_map
Nick Piggin2dc91ab2010-08-18 04:37:37 +100030#else
31#define LOCKDEP_INIT_MAP(a, b, c, d)
Nick Piggin2dc91ab2010-08-18 04:37:37 +100032#endif
33
Andi Kleeneea62f82012-05-08 13:32:24 +093034struct lglock {
35 arch_spinlock_t __percpu *lock;
36#ifdef CONFIG_DEBUG_LOCK_ALLOC
37 struct lock_class_key lock_key;
38 struct lockdep_map lock_dep_map;
39#endif
40};
Nick Piggin2dc91ab2010-08-18 04:37:37 +100041
42#define DEFINE_LGLOCK(name) \
Lai Jiangshan466cab82012-10-09 14:49:51 -070043 static DEFINE_PER_CPU(arch_spinlock_t, name ## _lock) \
Andi Kleeneea62f82012-05-08 13:32:24 +093044 = __ARCH_SPIN_LOCK_UNLOCKED; \
45 struct lglock name = { .lock = &name ## _lock }
46
Lai Jiangshan4b2c551f2012-10-09 14:49:54 -070047#define DEFINE_STATIC_LGLOCK(name) \
48 static DEFINE_PER_CPU(arch_spinlock_t, name ## _lock) \
49 = __ARCH_SPIN_LOCK_UNLOCKED; \
50 static struct lglock name = { .lock = &name ## _lock }
51
Andi Kleeneea62f82012-05-08 13:32:24 +093052void lg_lock_init(struct lglock *lg, char *name);
53void lg_local_lock(struct lglock *lg);
54void lg_local_unlock(struct lglock *lg);
55void lg_local_lock_cpu(struct lglock *lg, int cpu);
56void lg_local_unlock_cpu(struct lglock *lg, int cpu);
57void lg_global_lock(struct lglock *lg);
58void lg_global_unlock(struct lglock *lg);
59
Nick Piggin2dc91ab2010-08-18 04:37:37 +100060#endif