blob: a90a6f5ca899cbda844b23e6fb8b6efccaca4620 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#ifndef _LINUX_JBD_STATE_H
#define _LINUX_JBD_STATE_H
#include <linux/bit_spinlock.h>
static inline struct buffer_head *jh2bh(struct journal_head *jh)
{
return jh->b_bh;
}
static inline struct journal_head *bh2jh(struct buffer_head *bh)
{
return bh->b_private;
}
static inline void jbd_lock_bh_state(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
bit_spin_lock(BH_State, &bh->b_state);
#else
spin_lock(&bh->b_state_lock);
#endif
}
static inline int jbd_trylock_bh_state(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
return bit_spin_trylock(BH_State, &bh->b_state);
#else
return spin_trylock(&bh->b_state_lock);
#endif
}
static inline int jbd_is_locked_bh_state(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
return bit_spin_is_locked(BH_State, &bh->b_state);
#else
return spin_is_locked(&bh->b_state_lock);
#endif
}
static inline void jbd_unlock_bh_state(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
bit_spin_unlock(BH_State, &bh->b_state);
#else
spin_unlock(&bh->b_state_lock);
#endif
}
static inline void jbd_lock_bh_journal_head(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
bit_spin_lock(BH_JournalHead, &bh->b_state);
#else
spin_lock(&bh->b_journal_head_lock);
#endif
}
static inline void jbd_unlock_bh_journal_head(struct buffer_head *bh)
{
#ifndef CONFIG_PREEMPT_RT_BASE
bit_spin_unlock(BH_JournalHead, &bh->b_state);
#else
spin_unlock(&bh->b_journal_head_lock);
#endif
}
#endif
|