Home
last modified time | relevance | path

Searched refs:kthread (Results 1 – 3 of 3) sorted by relevance

/kernel/
Dkthread.c42 struct kthread { struct
58 container_of(vfork, struct kthread, exited) argument
60 static inline struct kthread *to_kthread(struct task_struct *k) in to_kthread()
65 static struct kthread *to_live_kthread(struct task_struct *k) in to_live_kthread()
152 struct kthread *kthread = to_kthread(task); in kthread_probe_data() local
155 probe_kernel_read(&data, &kthread->data, sizeof(data)); in kthread_probe_data()
159 static void __kthread_parkme(struct kthread *self) in __kthread_parkme()
178 static int kthread(void *_create) in kthread() function
185 struct kthread self; in kthread()
235 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD); in create_kthread()
[all …]
DMakefile10 kthread.o sys_ni.o nsproxy.o \
/kernel/trace/
Dtrace_hwlat.c369 struct task_struct *kthread; in start_kthread() local
371 kthread = kthread_create(kthread_fn, NULL, "hwlatd"); in start_kthread()
372 if (IS_ERR(kthread)) { in start_kthread()
376 hwlat_kthread = kthread; in start_kthread()
377 wake_up_process(kthread); in start_kthread()