blob: b93cb8e33f8bb8c96a12e462bebeecf9ec43446c (
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
|
#ifndef __TOOLS_LINUX_SRCU_H
#define __TOOLS_LINUX_SRCU_H
#include <linux/rcupdate.h>
#define NUM_ACTIVE_RCU_POLL_OLDSTATE 2
typedef void (*rcu_callback_t)(struct rcu_head *head);
struct srcu_struct {
};
static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx) {}
static inline int srcu_read_lock(struct srcu_struct *ssp)
{
return 0;
}
static inline bool poll_state_synchronize_srcu(struct srcu_struct *ssp, unsigned long cookie)
{
return true;
}
static inline unsigned long start_poll_synchronize_srcu(struct srcu_struct *ssp)
{
return 0;
}
static inline unsigned long get_state_synchronize_srcu(struct srcu_struct *ssp)
{
return 0;
}
#undef poll_state_synchronize_rcu
static inline bool poll_state_synchronize_rcu(unsigned long cookie)
{
return false;
}
#undef start_poll_synchronize_rcu
static inline unsigned long start_poll_synchronize_rcu()
{
return 0;
}
static inline unsigned long get_state_synchronize_rcu()
{
return 0;
}
static inline void synchronize_srcu_expedited(struct srcu_struct *ssp) {}
static inline void srcu_barrier(struct srcu_struct *ssp) {}
static inline void cleanup_srcu_struct(struct srcu_struct *ssp) {}
static inline void call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp,
rcu_callback_t func)
{
call_rcu(rhp, func);
}
static inline int init_srcu_struct(struct srcu_struct *ssp)
{
return 0;
}
#endif /* __TOOLS_LINUX_SRCU_H */
|