File: seqmutex.h

package info (click to toggle)
bcachefs-tools 1%3A1.13.0-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,088 kB
  • sloc: ansic: 119,034; python: 433; makefile: 268; sh: 221
file content (45 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (18)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_SEQMUTEX_H
#define _BCACHEFS_SEQMUTEX_H

#include <linux/mutex.h>

struct seqmutex {
	struct mutex	lock;
	u32		seq;
};

#define seqmutex_init(_lock)	mutex_init(&(_lock)->lock)

static inline bool seqmutex_trylock(struct seqmutex *lock)
{
	return mutex_trylock(&lock->lock);
}

static inline void seqmutex_lock(struct seqmutex *lock)
{
	mutex_lock(&lock->lock);
	lock->seq++;
}

static inline u32 seqmutex_unlock(struct seqmutex *lock)
{
	u32 seq = lock->seq;
	mutex_unlock(&lock->lock);
	return seq;
}

static inline bool seqmutex_relock(struct seqmutex *lock, u32 seq)
{
	if (lock->seq != seq || !mutex_trylock(&lock->lock))
		return false;

	if (lock->seq != seq) {
		mutex_unlock(&lock->lock);
		return false;
	}

	return true;
}

#endif /* _BCACHEFS_SEQMUTEX_H */