hc
2024-08-13 f258bb3ae540ccc311fd344a0121bba1928b85dd
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
71
72
73
74
75
76
77
78
79
80
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_RCUWAIT_H_
#define _LINUX_RCUWAIT_H_
 
#include <linux/rcupdate.h>
#include <linux/sched/signal.h>
 
/*
 * rcuwait provides a way of blocking and waking up a single
 * task in an rcu-safe manner.
 *
 * The only time @task is non-nil is when a user is blocked (or
 * checking if it needs to) on a condition, and reset as soon as we
 * know that the condition has succeeded and are awoken.
 */
struct rcuwait {
   struct task_struct __rcu *task;
};
 
#define __RCUWAIT_INITIALIZER(name)        \
   { .task = NULL, }
 
static inline void rcuwait_init(struct rcuwait *w)
{
   w->task = NULL;
}
 
/*
 * Note: this provides no serialization and, just as with waitqueues,
 * requires care to estimate as to whether or not the wait is active.
 */
static inline int rcuwait_active(struct rcuwait *w)
{
   return !!rcu_access_pointer(w->task);
}
 
extern int rcuwait_wake_up(struct rcuwait *w);
 
/*
 * The caller is responsible for locking around rcuwait_wait_event(),
 * and [prepare_to/finish]_rcuwait() such that writes to @task are
 * properly serialized.
 */
 
static inline void prepare_to_rcuwait(struct rcuwait *w)
{
   rcu_assign_pointer(w->task, current);
}
 
static inline void finish_rcuwait(struct rcuwait *w)
{
        rcu_assign_pointer(w->task, NULL);
   __set_current_state(TASK_RUNNING);
}
 
#define rcuwait_wait_event(w, condition, state)                \
({                                    \
   int __ret = 0;                            \
   prepare_to_rcuwait(w);                        \
   for (;;) {                            \
       /*                            \
        * Implicit barrier (A) pairs with (B) in        \
        * rcuwait_wake_up().                    \
        */                            \
       set_current_state(state);                \
       if (condition)                        \
           break;                        \
                                   \
       if (signal_pending_state(state, current)) {        \
           __ret = -EINTR;                    \
           break;                        \
       }                            \
                                   \
       schedule();                        \
   }                                \
   finish_rcuwait(w);                        \
   __ret;                                \
})
 
#endif /* _LINUX_RCUWAIT_H_ */