lockref.c 3.9 KB
Newer Older
1 2 3
#include <linux/export.h>
#include <linux/lockref.h>

4
#if USE_CMPXCHG_LOCKREF
5 6 7 8 9 10 11 12

/*
 * Note that the "cmpxchg()" reloads the "old" value for the
 * failure case.
 */
#define CMPXCHG_LOOP(CODE, SUCCESS) do {					\
	struct lockref old;							\
	BUILD_BUG_ON(sizeof(old) != 8);						\
13
	old.lock_count = READ_ONCE(lockref->lock_count);			\
14 15 16
	while (likely(arch_spin_value_unlocked(old.lock.rlock.raw_lock))) {  	\
		struct lockref new = old, prev = old;				\
		CODE								\
17 18 19
		old.lock_count = cmpxchg64_relaxed(&lockref->lock_count,	\
						   old.lock_count,		\
						   new.lock_count);		\
20 21 22
		if (likely(old.lock_count == prev.lock_count)) {		\
			SUCCESS;						\
		}								\
23
		cpu_relax();							\
24 25 26 27 28 29 30 31 32
	}									\
} while (0)

#else

#define CMPXCHG_LOOP(CODE, SUCCESS) do { } while (0)

#endif

33 34
/**
 * lockref_get - Increments reference count unconditionally
35
 * @lockref: pointer to lockref structure
36 37 38 39 40 41
 *
 * This operation is only valid if you already hold a reference
 * to the object, so you know the count cannot be zero.
 */
void lockref_get(struct lockref *lockref)
{
42 43 44 45 46 47
	CMPXCHG_LOOP(
		new.count++;
	,
		return;
	);

48 49 50 51 52 53 54
	spin_lock(&lockref->lock);
	lockref->count++;
	spin_unlock(&lockref->lock);
}
EXPORT_SYMBOL(lockref_get);

/**
55
 * lockref_get_not_zero - Increments count unless the count is 0 or dead
56
 * @lockref: pointer to lockref structure
57 58 59 60
 * Return: 1 if count updated successfully or 0 if count was zero
 */
int lockref_get_not_zero(struct lockref *lockref)
{
61 62 63 64
	int retval;

	CMPXCHG_LOOP(
		new.count++;
65
		if (old.count <= 0)
66 67 68 69
			return 0;
	,
		return 1;
	);
70 71

	spin_lock(&lockref->lock);
72
	retval = 0;
73
	if (lockref->count > 0) {
74 75 76 77 78 79 80 81 82
		lockref->count++;
		retval = 1;
	}
	spin_unlock(&lockref->lock);
	return retval;
}
EXPORT_SYMBOL(lockref_get_not_zero);

/**
83
 * lockref_get_or_lock - Increments count unless the count is 0 or dead
84
 * @lockref: pointer to lockref structure
85 86 87 88 89
 * Return: 1 if count updated successfully or 0 if count was zero
 * and we got the lock instead.
 */
int lockref_get_or_lock(struct lockref *lockref)
{
90 91
	CMPXCHG_LOOP(
		new.count++;
92
		if (old.count <= 0)
93 94 95 96 97
			break;
	,
		return 1;
	);

98
	spin_lock(&lockref->lock);
99
	if (lockref->count <= 0)
100 101 102 103 104 105 106
		return 0;
	lockref->count++;
	spin_unlock(&lockref->lock);
	return 1;
}
EXPORT_SYMBOL(lockref_get_or_lock);

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/**
 * lockref_put_return - Decrement reference count if possible
 * @lockref: pointer to lockref structure
 *
 * Decrement the reference count and return the new value.
 * If the lockref was dead or locked, return an error.
 */
int lockref_put_return(struct lockref *lockref)
{
	CMPXCHG_LOOP(
		new.count--;
		if (old.count <= 0)
			return -1;
	,
		return new.count;
	);
	return -1;
}
EXPORT_SYMBOL(lockref_put_return);

127 128
/**
 * lockref_put_or_lock - decrements count unless count <= 1 before decrement
129
 * @lockref: pointer to lockref structure
130 131 132 133
 * Return: 1 if count updated successfully or 0 if count <= 1 and lock taken
 */
int lockref_put_or_lock(struct lockref *lockref)
{
134 135 136 137 138 139 140 141
	CMPXCHG_LOOP(
		new.count--;
		if (old.count <= 1)
			break;
	,
		return 1;
	);

142 143 144 145 146 147 148 149
	spin_lock(&lockref->lock);
	if (lockref->count <= 1)
		return 0;
	lockref->count--;
	spin_unlock(&lockref->lock);
	return 1;
}
EXPORT_SYMBOL(lockref_put_or_lock);
150 151 152 153 154 155 156 157 158 159

/**
 * lockref_mark_dead - mark lockref dead
 * @lockref: pointer to lockref structure
 */
void lockref_mark_dead(struct lockref *lockref)
{
	assert_spin_locked(&lockref->lock);
	lockref->count = -128;
}
S
Steven Whitehouse 已提交
160
EXPORT_SYMBOL(lockref_mark_dead);
161 162 163 164 165 166 167 168 169 170 171 172

/**
 * lockref_get_not_dead - Increments count unless the ref is dead
 * @lockref: pointer to lockref structure
 * Return: 1 if count updated successfully or 0 if lockref was dead
 */
int lockref_get_not_dead(struct lockref *lockref)
{
	int retval;

	CMPXCHG_LOOP(
		new.count++;
173
		if (old.count < 0)
174 175 176 177 178 179 180
			return 0;
	,
		return 1;
	);

	spin_lock(&lockref->lock);
	retval = 0;
181
	if (lockref->count >= 0) {
182 183 184 185 186 187 188
		lockref->count++;
		retval = 1;
	}
	spin_unlock(&lockref->lock);
	return retval;
}
EXPORT_SYMBOL(lockref_get_not_dead);