blob: b2d65b80cd69dc54fc3b35f3ef3f3db92b28f6c5 (
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
|
#ifndef __SLICE_H
#define __SLICE_H
enum slice_action {
SLICE_ACQUIRE = 1,
SLICE_RELEASE = -1,
SLICE_TEST = 0,
};
struct slice {
int acquired;
struct list_head deps;
char *name;
struct list_head list;
};
struct slice_entry {
struct slice *slice;
struct list_head list;
};
void slice_acquire(struct slice *slice);
void slice_release(struct slice *slice);
bool slice_acquired(struct slice *slice);
void slice_depends_on(struct slice *slice, struct slice *dep);
void slice_init(struct slice *slice, const char *name);
void slice_exit(struct slice *slice);
void slice_debug_acquired(struct slice *slice);
extern struct slice command_slice;
void command_slice_acquire(void);
void command_slice_release(void);
extern int poller_active;
#ifdef CONFIG_POLLER
#define assert_command_context() ({ \
WARN_ONCE(poller_active, "%s called in poller\n", __func__); \
})
#else
#define assert_command_context() do { } while (0)
#endif
#endif /* __SLICE_H */
|