~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/kthread.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/kthread.h (Version linux-6.11.5) and /include/linux/kthread.h (Version linux-4.11.12)


  1 /* SPDX-License-Identifier: GPL-2.0 */         << 
  2 #ifndef _LINUX_KTHREAD_H                            1 #ifndef _LINUX_KTHREAD_H
  3 #define _LINUX_KTHREAD_H                            2 #define _LINUX_KTHREAD_H
  4 /* Simple interface for creating and stopping       3 /* Simple interface for creating and stopping kernel threads without mess. */
  5 #include <linux/err.h>                              4 #include <linux/err.h>
  6 #include <linux/sched.h>                            5 #include <linux/sched.h>
  7                                                     6 
  8 struct mm_struct;                              << 
  9                                                << 
 10 __printf(4, 5)                                      7 __printf(4, 5)
 11 struct task_struct *kthread_create_on_node(int      8 struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
 12                                            voi      9                                            void *data,
 13                                            int     10                                            int node,
 14                                            con     11                                            const char namefmt[], ...);
 15                                                    12 
 16 /**                                                13 /**
 17  * kthread_create - create a kthread on the cu     14  * kthread_create - create a kthread on the current node
 18  * @threadfn: the function to run in the threa     15  * @threadfn: the function to run in the thread
 19  * @data: data pointer for @threadfn()             16  * @data: data pointer for @threadfn()
 20  * @namefmt: printf-style format string for th     17  * @namefmt: printf-style format string for the thread name
 21  * @arg: arguments for @namefmt.               !!  18  * @...: arguments for @namefmt.
 22  *                                                 19  *
 23  * This macro will create a kthread on the cur     20  * This macro will create a kthread on the current node, leaving it in
 24  * the stopped state.  This is just a helper f     21  * the stopped state.  This is just a helper for kthread_create_on_node();
 25  * see the documentation there for more detail     22  * see the documentation there for more details.
 26  */                                                23  */
 27 #define kthread_create(threadfn, data, namefmt     24 #define kthread_create(threadfn, data, namefmt, arg...) \
 28         kthread_create_on_node(threadfn, data,     25         kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
 29                                                    26 
 30                                                    27 
 31 struct task_struct *kthread_create_on_cpu(int      28 struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
 32                                           void     29                                           void *data,
 33                                           unsi     30                                           unsigned int cpu,
 34                                           cons     31                                           const char *namefmt);
 35                                                    32 
 36 void get_kthread_comm(char *buf, size_t buf_si << 
 37 bool set_kthread_struct(struct task_struct *p) << 
 38                                                << 
 39 void kthread_set_per_cpu(struct task_struct *k << 
 40 bool kthread_is_per_cpu(struct task_struct *k) << 
 41                                                << 
 42 /**                                                33 /**
 43  * kthread_run - create and wake a thread.         34  * kthread_run - create and wake a thread.
 44  * @threadfn: the function to run until signal     35  * @threadfn: the function to run until signal_pending(current).
 45  * @data: data ptr for @threadfn.                  36  * @data: data ptr for @threadfn.
 46  * @namefmt: printf-style name for the thread.     37  * @namefmt: printf-style name for the thread.
 47  *                                                 38  *
 48  * Description: Convenient wrapper for kthread     39  * Description: Convenient wrapper for kthread_create() followed by
 49  * wake_up_process().  Returns the kthread or      40  * wake_up_process().  Returns the kthread or ERR_PTR(-ENOMEM).
 50  */                                                41  */
 51 #define kthread_run(threadfn, data, namefmt, .     42 #define kthread_run(threadfn, data, namefmt, ...)                          \
 52 ({                                                 43 ({                                                                         \
 53         struct task_struct *__k                    44         struct task_struct *__k                                            \
 54                 = kthread_create(threadfn, dat     45                 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
 55         if (!IS_ERR(__k))                          46         if (!IS_ERR(__k))                                                  \
 56                 wake_up_process(__k);              47                 wake_up_process(__k);                                      \
 57         __k;                                       48         __k;                                                               \
 58 })                                                 49 })
 59                                                    50 
 60 /**                                            << 
 61  * kthread_run_on_cpu - create and wake a cpu  << 
 62  * @threadfn: the function to run until signal << 
 63  * @data: data ptr for @threadfn.              << 
 64  * @cpu: The cpu on which the thread should be << 
 65  * @namefmt: printf-style name for the thread. << 
 66  *           to "name.*%u". Code fills in cpu  << 
 67  *                                             << 
 68  * Description: Convenient wrapper for kthread << 
 69  * followed by wake_up_process().  Returns the << 
 70  * ERR_PTR(-ENOMEM).                           << 
 71  */                                            << 
 72 static inline struct task_struct *             << 
 73 kthread_run_on_cpu(int (*threadfn)(void *data) << 
 74                         unsigned int cpu, cons << 
 75 {                                              << 
 76         struct task_struct *p;                 << 
 77                                                << 
 78         p = kthread_create_on_cpu(threadfn, da << 
 79         if (!IS_ERR(p))                        << 
 80                 wake_up_process(p);            << 
 81                                                << 
 82         return p;                              << 
 83 }                                              << 
 84                                                << 
 85 void free_kthread_struct(struct task_struct *k     51 void free_kthread_struct(struct task_struct *k);
 86 void kthread_bind(struct task_struct *k, unsig     52 void kthread_bind(struct task_struct *k, unsigned int cpu);
 87 void kthread_bind_mask(struct task_struct *k,      53 void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
 88 int kthread_stop(struct task_struct *k);           54 int kthread_stop(struct task_struct *k);
 89 int kthread_stop_put(struct task_struct *k);   << 
 90 bool kthread_should_stop(void);                    55 bool kthread_should_stop(void);
 91 bool kthread_should_park(void);                    56 bool kthread_should_park(void);
 92 bool kthread_should_stop_or_park(void);        << 
 93 bool kthread_freezable_should_stop(bool *was_f     57 bool kthread_freezable_should_stop(bool *was_frozen);
 94 void *kthread_func(struct task_struct *k);     << 
 95 void *kthread_data(struct task_struct *k);         58 void *kthread_data(struct task_struct *k);
 96 void *kthread_probe_data(struct task_struct *k     59 void *kthread_probe_data(struct task_struct *k);
 97 int kthread_park(struct task_struct *k);           60 int kthread_park(struct task_struct *k);
 98 void kthread_unpark(struct task_struct *k);        61 void kthread_unpark(struct task_struct *k);
 99 void kthread_parkme(void);                         62 void kthread_parkme(void);
100 void kthread_exit(long result) __noreturn;     << 
101 void kthread_complete_and_exit(struct completi << 
102                                                    63 
103 int kthreadd(void *unused);                        64 int kthreadd(void *unused);
104 extern struct task_struct *kthreadd_task;          65 extern struct task_struct *kthreadd_task;
105 extern int tsk_fork_get_node(struct task_struc     66 extern int tsk_fork_get_node(struct task_struct *tsk);
106                                                    67 
107 /*                                                 68 /*
108  * Simple work processor based on kthread.         69  * Simple work processor based on kthread.
109  *                                                 70  *
110  * This provides easier way to make use of kth     71  * This provides easier way to make use of kthreads.  A kthread_work
111  * can be queued and flushed using queue/kthre     72  * can be queued and flushed using queue/kthread_flush_work()
112  * respectively.  Queued kthread_works are pro     73  * respectively.  Queued kthread_works are processed by a kthread
113  * running kthread_worker_fn().                    74  * running kthread_worker_fn().
114  */                                                75  */
115 struct kthread_work;                               76 struct kthread_work;
116 typedef void (*kthread_work_func_t)(struct kth     77 typedef void (*kthread_work_func_t)(struct kthread_work *work);
117 void kthread_delayed_work_timer_fn(struct time !!  78 void kthread_delayed_work_timer_fn(unsigned long __data);
118                                                    79 
119 enum {                                             80 enum {
120         KTW_FREEZABLE           = 1 << 0,          81         KTW_FREEZABLE           = 1 << 0,       /* freeze during suspend */
121 };                                                 82 };
122                                                    83 
123 struct kthread_worker {                            84 struct kthread_worker {
124         unsigned int            flags;             85         unsigned int            flags;
125         raw_spinlock_t          lock;          !!  86         spinlock_t              lock;
126         struct list_head        work_list;         87         struct list_head        work_list;
127         struct list_head        delayed_work_l     88         struct list_head        delayed_work_list;
128         struct task_struct      *task;             89         struct task_struct      *task;
129         struct kthread_work     *current_work;     90         struct kthread_work     *current_work;
130 };                                                 91 };
131                                                    92 
132 struct kthread_work {                              93 struct kthread_work {
133         struct list_head        node;              94         struct list_head        node;
134         kthread_work_func_t     func;              95         kthread_work_func_t     func;
135         struct kthread_worker   *worker;           96         struct kthread_worker   *worker;
136         /* Number of canceling calls that are      97         /* Number of canceling calls that are running at the moment. */
137         int                     canceling;         98         int                     canceling;
138 };                                                 99 };
139                                                   100 
140 struct kthread_delayed_work {                     101 struct kthread_delayed_work {
141         struct kthread_work work;                 102         struct kthread_work work;
142         struct timer_list timer;                  103         struct timer_list timer;
143 };                                                104 };
144                                                   105 
                                                   >> 106 #define KTHREAD_WORKER_INIT(worker)     {                               \
                                                   >> 107         .lock = __SPIN_LOCK_UNLOCKED((worker).lock),                    \
                                                   >> 108         .work_list = LIST_HEAD_INIT((worker).work_list),                \
                                                   >> 109         .delayed_work_list = LIST_HEAD_INIT((worker).delayed_work_list),\
                                                   >> 110         }
                                                   >> 111 
145 #define KTHREAD_WORK_INIT(work, fn)     {         112 #define KTHREAD_WORK_INIT(work, fn)     {                               \
146         .node = LIST_HEAD_INIT((work).node),      113         .node = LIST_HEAD_INIT((work).node),                            \
147         .func = (fn),                             114         .func = (fn),                                                   \
148         }                                         115         }
149                                                   116 
150 #define KTHREAD_DELAYED_WORK_INIT(dwork, fn) {    117 #define KTHREAD_DELAYED_WORK_INIT(dwork, fn) {                          \
151         .work = KTHREAD_WORK_INIT((dwork).work    118         .work = KTHREAD_WORK_INIT((dwork).work, (fn)),                  \
152         .timer = __TIMER_INITIALIZER(kthread_d !! 119         .timer = __TIMER_INITIALIZER(kthread_delayed_work_timer_fn,     \
                                                   >> 120                                      0, (unsigned long)&(dwork),        \
153                                      TIMER_IRQ    121                                      TIMER_IRQSAFE),                    \
154         }                                         122         }
155                                                   123 
                                                   >> 124 #define DEFINE_KTHREAD_WORKER(worker)                                   \
                                                   >> 125         struct kthread_worker worker = KTHREAD_WORKER_INIT(worker)
                                                   >> 126 
156 #define DEFINE_KTHREAD_WORK(work, fn)             127 #define DEFINE_KTHREAD_WORK(work, fn)                                   \
157         struct kthread_work work = KTHREAD_WOR    128         struct kthread_work work = KTHREAD_WORK_INIT(work, fn)
158                                                   129 
159 #define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn)    130 #define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn)                          \
160         struct kthread_delayed_work dwork =       131         struct kthread_delayed_work dwork =                             \
161                 KTHREAD_DELAYED_WORK_INIT(dwor    132                 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
162                                                   133 
                                                   >> 134 /*
                                                   >> 135  * kthread_worker.lock needs its own lockdep class key when defined on
                                                   >> 136  * stack with lockdep enabled.  Use the following macros in such cases.
                                                   >> 137  */
                                                   >> 138 #ifdef CONFIG_LOCKDEP
                                                   >> 139 # define KTHREAD_WORKER_INIT_ONSTACK(worker)                            \
                                                   >> 140         ({ kthread_init_worker(&worker); worker; })
                                                   >> 141 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker)                          \
                                                   >> 142         struct kthread_worker worker = KTHREAD_WORKER_INIT_ONSTACK(worker)
                                                   >> 143 #else
                                                   >> 144 # define DEFINE_KTHREAD_WORKER_ONSTACK(worker) DEFINE_KTHREAD_WORKER(worker)
                                                   >> 145 #endif
                                                   >> 146 
163 extern void __kthread_init_worker(struct kthre    147 extern void __kthread_init_worker(struct kthread_worker *worker,
164                         const char *name, stru    148                         const char *name, struct lock_class_key *key);
165                                                   149 
166 #define kthread_init_worker(worker)               150 #define kthread_init_worker(worker)                                     \
167         do {                                      151         do {                                                            \
168                 static struct lock_class_key _    152                 static struct lock_class_key __key;                     \
169                 __kthread_init_worker((worker)    153                 __kthread_init_worker((worker), "("#worker")->lock", &__key); \
170         } while (0)                               154         } while (0)
171                                                   155 
172 #define kthread_init_work(work, fn)               156 #define kthread_init_work(work, fn)                                     \
173         do {                                      157         do {                                                            \
174                 memset((work), 0, sizeof(struc    158                 memset((work), 0, sizeof(struct kthread_work));         \
175                 INIT_LIST_HEAD(&(work)->node);    159                 INIT_LIST_HEAD(&(work)->node);                          \
176                 (work)->func = (fn);              160                 (work)->func = (fn);                                    \
177         } while (0)                               161         } while (0)
178                                                   162 
179 #define kthread_init_delayed_work(dwork, fn)      163 #define kthread_init_delayed_work(dwork, fn)                            \
180         do {                                      164         do {                                                            \
181                 kthread_init_work(&(dwork)->wo    165                 kthread_init_work(&(dwork)->work, (fn));                \
182                 timer_setup(&(dwork)->timer,   !! 166                 __setup_timer(&(dwork)->timer,                          \
183                              kthread_delayed_w !! 167                               kthread_delayed_work_timer_fn,            \
184                              TIMER_IRQSAFE);   !! 168                               (unsigned long)(dwork),                   \
                                                   >> 169                               TIMER_IRQSAFE);                           \
185         } while (0)                               170         } while (0)
186                                                   171 
187 int kthread_worker_fn(void *worker_ptr);          172 int kthread_worker_fn(void *worker_ptr);
188                                                   173 
189 __printf(2, 3)                                    174 __printf(2, 3)
190 struct kthread_worker *                           175 struct kthread_worker *
191 kthread_create_worker(unsigned int flags, cons    176 kthread_create_worker(unsigned int flags, const char namefmt[], ...);
192                                                   177 
193 __printf(3, 4) struct kthread_worker *            178 __printf(3, 4) struct kthread_worker *
194 kthread_create_worker_on_cpu(int cpu, unsigned    179 kthread_create_worker_on_cpu(int cpu, unsigned int flags,
195                              const char namefm    180                              const char namefmt[], ...);
196                                                   181 
197 bool kthread_queue_work(struct kthread_worker     182 bool kthread_queue_work(struct kthread_worker *worker,
198                         struct kthread_work *w    183                         struct kthread_work *work);
199                                                   184 
200 bool kthread_queue_delayed_work(struct kthread    185 bool kthread_queue_delayed_work(struct kthread_worker *worker,
201                                 struct kthread    186                                 struct kthread_delayed_work *dwork,
202                                 unsigned long     187                                 unsigned long delay);
203                                                   188 
204 bool kthread_mod_delayed_work(struct kthread_w    189 bool kthread_mod_delayed_work(struct kthread_worker *worker,
205                               struct kthread_d    190                               struct kthread_delayed_work *dwork,
206                               unsigned long de    191                               unsigned long delay);
207                                                   192 
208 void kthread_flush_work(struct kthread_work *w    193 void kthread_flush_work(struct kthread_work *work);
209 void kthread_flush_worker(struct kthread_worke    194 void kthread_flush_worker(struct kthread_worker *worker);
210                                                   195 
211 bool kthread_cancel_work_sync(struct kthread_w    196 bool kthread_cancel_work_sync(struct kthread_work *work);
212 bool kthread_cancel_delayed_work_sync(struct k    197 bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *work);
213                                                   198 
214 void kthread_destroy_worker(struct kthread_wor    199 void kthread_destroy_worker(struct kthread_worker *worker);
215                                                   200 
216 void kthread_use_mm(struct mm_struct *mm);     << 
217 void kthread_unuse_mm(struct mm_struct *mm);   << 
218                                                << 
219 struct cgroup_subsys_state;                    << 
220                                                << 
221 #ifdef CONFIG_BLK_CGROUP                       << 
222 void kthread_associate_blkcg(struct cgroup_sub << 
223 struct cgroup_subsys_state *kthread_blkcg(void << 
224 #else                                          << 
225 static inline void kthread_associate_blkcg(str << 
226 #endif                                         << 
227 #endif /* _LINUX_KTHREAD_H */                     201 #endif /* _LINUX_KTHREAD_H */
228                                                   202 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php