aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu/fs/xfs/FreeBSD/support/spin.h
blob: 2b09be477959c96d15b79ee042bdb44ef5035a35 (plain) (blame)
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
#ifndef __XFS_SUPPORT_SPIN_H__
#define __XFS_SUPPORT_SPIN_H__

#include <sys/param.h>
#include <sys/types.h>
#include <sys/lock.h>
#include <sys/mutex.h>

#define SPLDECL(s)	register_t s

/*
 * Map the spinlocks from IRIX to FreeBSD
 */
#define spinlock_init(lock, name)	mtx_init(lock, name, NULL, MTX_DEF)
#define spinlock_destroy(lock)		mtx_destroy(lock)

/*
 * Map lock_t from IRIX to FreeBSD mutexes
 */
typedef struct mtx lock_t;

#define nested_spinunlock(lock)		mtx_unlock(lock)
#define nested_spinlock(lock)		mtx_lock(lock)
#define nested_spintrylock(lock)	mtx_trylock(lock)

#define spin_lock(lock)			mtx_lock(lock)
#define spin_unlock(lock)		mtx_unlock(lock)

#if LOCK_DEBUG > 0
#define mutex_spinlock(lock)		(spin_lock(lock),0)
#else
static __inline register_t
mutex_spinlock(lock_t *lock)		{ mtx_lock(lock); return 0; }
#endif

#define mutex_spinunlock(lock,s) \
	do { \
		spin_unlock(lock); \
		if (&s) {} \
	} while (0)

#endif /* __XFS_SUPPORT_SPIN_H__ */