Home
last modified time | relevance | path

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

123

/kernel/linux/linux-5.10/kernel/
Dkthread.c52 struct kthread { struct
71 static inline void set_kthread_struct(void *kthread) in set_kthread_struct() argument
78 current->set_child_tid = (__force void __user *)kthread; in set_kthread_struct()
81 static inline struct kthread *to_kthread(struct task_struct *k) in to_kthread()
98 static inline struct kthread *__to_kthread(struct task_struct *p) in __to_kthread()
100 void *kthread = (__force void *)p->set_child_tid; in __to_kthread() local
101 if (kthread && !(p->flags & PF_KTHREAD)) in __to_kthread()
102 kthread = NULL; in __to_kthread()
103 return kthread; in __to_kthread()
108 struct kthread *kthread; in free_kthread_struct() local
[all …]
/kernel/linux/linux-5.10/drivers/media/test-drivers/vimc/
Dvimc-streamer.c200 if (stream->kthread) in vimc_streamer_s_stream()
207 stream->kthread = kthread_run(vimc_streamer_thread, stream, in vimc_streamer_s_stream()
210 if (IS_ERR(stream->kthread)) { in vimc_streamer_s_stream()
211 ret = PTR_ERR(stream->kthread); in vimc_streamer_s_stream()
214 stream->kthread = NULL; in vimc_streamer_s_stream()
219 if (!stream->kthread) in vimc_streamer_s_stream()
222 ret = kthread_stop(stream->kthread); in vimc_streamer_s_stream()
232 stream->kthread = NULL; in vimc_streamer_s_stream()
Dvimc-streamer.h38 struct task_struct *kthread; member
/kernel/linux/linux-5.10/drivers/net/wimax/i2400m/
Dusb-tx.c246 struct task_struct *kthread; in i2400mu_tx_setup() local
248 kthread = kthread_run(i2400mu_txd, i2400mu, "%s-tx", in i2400mu_tx_setup()
251 if (IS_ERR(kthread)) { in i2400mu_tx_setup()
252 result = PTR_ERR(kthread); in i2400mu_tx_setup()
263 struct task_struct *kthread; in i2400mu_tx_release() local
266 kthread = i2400mu->tx_kthread; in i2400mu_tx_release()
269 if (kthread) in i2400mu_tx_release()
270 kthread_stop(kthread); in i2400mu_tx_release()
Dusb-rx.c433 struct task_struct *kthread; in i2400mu_rx_setup() local
435 kthread = kthread_run(i2400mu_rxd, i2400mu, "%s-rx", in i2400mu_rx_setup()
438 if (IS_ERR(kthread)) { in i2400mu_rx_setup()
439 result = PTR_ERR(kthread); in i2400mu_rx_setup()
451 struct task_struct *kthread; in i2400mu_rx_release() local
454 kthread = i2400mu->rx_kthread; in i2400mu_rx_release()
457 if (kthread) in i2400mu_rx_release()
458 kthread_stop(kthread); in i2400mu_rx_release()
/kernel/linux/linux-5.10/drivers/media/test-drivers/vivid/
DMakefile3 vivid-vid-cap.o vivid-vid-out.o vivid-kthread-cap.o vivid-kthread-out.o \
7 vivid-kthread-touch.o vivid-touch-cap.o
/kernel/linux/linux-5.10/drivers/crypto/ccp/
Dccp-dev-v3.c466 struct task_struct *kthread; in ccp_init() local
470 kthread = kthread_create(ccp_cmd_queue_thread, cmd_q, in ccp_init()
472 if (IS_ERR(kthread)) { in ccp_init()
474 PTR_ERR(kthread)); in ccp_init()
475 ret = PTR_ERR(kthread); in ccp_init()
479 cmd_q->kthread = kthread; in ccp_init()
480 wake_up_process(kthread); in ccp_init()
506 if (ccp->cmd_q[i].kthread) in ccp_init()
507 kthread_stop(ccp->cmd_q[i].kthread); in ccp_init()
545 if (ccp->cmd_q[i].kthread) in ccp_destroy()
[all …]
Dccp-dev-v5.c949 struct task_struct *kthread; in ccp5_init() local
953 kthread = kthread_create(ccp_cmd_queue_thread, cmd_q, in ccp5_init()
955 if (IS_ERR(kthread)) { in ccp5_init()
957 PTR_ERR(kthread)); in ccp5_init()
958 ret = PTR_ERR(kthread); in ccp5_init()
962 cmd_q->kthread = kthread; in ccp5_init()
963 wake_up_process(kthread); in ccp5_init()
994 if (ccp->cmd_q[i].kthread) in ccp5_init()
995 kthread_stop(ccp->cmd_q[i].kthread); in ccp5_init()
1046 if (ccp->cmd_q[i].kthread) in ccp5_destroy()
[all …]
Dccp-dev.c339 wake_up_process(ccp->cmd_q[i].kthread); in ccp_enqueue_cmd()
371 wake_up_process(ccp->cmd_q[i].kthread); in ccp_do_cmd_backlog()
567 wake_up_process(ccp->cmd_q[i].kthread); in ccp_dev_suspend()
596 wake_up_process(ccp->cmd_q[i].kthread); in ccp_dev_resume()
/kernel/linux/linux-5.10/drivers/media/radio/
Dradio-miropcm20.c73 struct task_struct *kthread; member
386 IS_ERR_OR_NULL(dev->kthread)) { in pcm20_open()
387 dev->kthread = kthread_run(pcm20_thread, dev, "%s", in pcm20_open()
389 if (IS_ERR(dev->kthread)) { in pcm20_open()
392 return PTR_ERR(dev->kthread); in pcm20_open()
402 if (v4l2_fh_is_singular_file(file) && !IS_ERR_OR_NULL(dev->kthread)) { in pcm20_release()
403 kthread_stop(dev->kthread); in pcm20_release()
404 dev->kthread = NULL; in pcm20_release()
/kernel/linux/linux-5.10/kernel/trace/
Dtrace_hwlat.c368 struct task_struct *kthread; in start_kthread() local
380 kthread = kthread_create(kthread_fn, NULL, "hwlatd"); in start_kthread()
381 if (IS_ERR(kthread)) { in start_kthread()
388 sched_setaffinity(kthread->pid, current_mask); in start_kthread()
390 hwlat_kthread = kthread; in start_kthread()
391 wake_up_process(kthread); in start_kthread()
/kernel/linux/linux-5.10/drivers/misc/sgi-xp/
Dxpc_main.c589 struct task_struct *kthread; in xpc_activate_partition() local
600 kthread = kthread_run(xpc_activating, (void *)((u64)partid), "xpc%02d", in xpc_activate_partition()
602 if (IS_ERR(kthread)) { in xpc_activate_partition()
779 struct task_struct *kthread; in xpc_create_kthreads() local
808 kthread = kthread_run(xpc_kthread_start, (void *)args, in xpc_create_kthreads()
810 if (IS_ERR(kthread)) { in xpc_create_kthreads()
1225 struct task_struct *kthread; in xpc_init() local
1273 kthread = kthread_run(xpc_hb_checker, NULL, XPC_HB_CHECK_THREAD_NAME); in xpc_init()
1274 if (IS_ERR(kthread)) { in xpc_init()
1285 kthread = kthread_run(xpc_initiate_discovery, NULL, in xpc_init()
[all …]
/kernel/linux/linux-5.10/kernel/bpf/
Dcpumap.c63 struct task_struct *kthread; member
155 kthread_stop(rcpu->kthread); in cpu_map_kthread_stop()
457 rcpu->kthread = kthread_create_on_node(cpu_map_kthread_run, rcpu, numa, in __cpu_map_entry_alloc()
459 if (IS_ERR(rcpu->kthread)) in __cpu_map_entry_alloc()
466 kthread_bind(rcpu->kthread, cpu); in __cpu_map_entry_alloc()
467 wake_up_process(rcpu->kthread); in __cpu_map_entry_alloc()
755 wake_up_process(bq->obj->kthread); in __cpu_map_flush()
/kernel/linux/linux-5.10/drivers/media/cec/core/
Dcec-core.c277 adap->kthread = kthread_run(cec_thread_func, adap, "cec-%s", name); in cec_allocate_adapter()
278 if (IS_ERR(adap->kthread)) { in cec_allocate_adapter()
280 res = PTR_ERR(adap->kthread); in cec_allocate_adapter()
294 kthread_stop(adap->kthread); in cec_allocate_adapter()
401 kthread_stop(adap->kthread); in cec_delete_adapter()
/kernel/linux/linux-5.10/drivers/media/pci/solo6x10/
Dsolo6x10-v4l2.c285 solo_dev->kthread = kthread_run(solo_thread, solo_dev, SOLO6X10_NAME "_disp"); in solo_start_thread()
287 if (IS_ERR(solo_dev->kthread)) { in solo_start_thread()
288 ret = PTR_ERR(solo_dev->kthread); in solo_start_thread()
289 solo_dev->kthread = NULL; in solo_start_thread()
299 if (!solo_dev->kthread) in solo_stop_thread()
303 kthread_stop(solo_dev->kthread); in solo_stop_thread()
304 solo_dev->kthread = NULL; in solo_stop_thread()
/kernel/linux/linux-5.10/Documentation/driver-api/
Dbasics.rst69 .. kernel-doc:: include/linux/kthread.h
72 .. kernel-doc:: kernel/kthread.c
/kernel/linux/linux-5.10/samples/bpf/
Dxdp_redirect_cpu_user.c193 struct record kthread; member
270 rec->kthread.cpu = alloc_record_per_cpu(); in alloc_stats_record()
285 free(r->kthread.cpu); in free_stats_record()
443 rec = &stats_rec->kthread; in stats_print()
444 prev = &stats_prev->kthread; in stats_print()
521 rec = &stats_rec->kthread; in stats_print()
522 prev = &stats_prev->kthread; in stats_print()
558 map_collect_percpu(fd, 0, &rec->kthread); in stats_collect()
/kernel/linux/linux-5.10/arch/um/kernel/
Dprocess.c159 int kthread = current->flags & PF_KTHREAD; in copy_thread() local
164 if (!kthread) { in copy_thread()
183 if (!kthread) { in copy_thread()
/kernel/linux/linux-5.10/drivers/media/pci/pt1/
Dpt1.c79 struct task_struct *kthread; member
682 if (!pt1->kthread) { in pt1_start_polling()
683 pt1->kthread = kthread_run(pt1_thread, pt1, "earth-pt1"); in pt1_start_polling()
684 if (IS_ERR(pt1->kthread)) { in pt1_start_polling()
685 ret = PTR_ERR(pt1->kthread); in pt1_start_polling()
686 pt1->kthread = NULL; in pt1_start_polling()
716 if (count == 0 && pt1->kthread) { in pt1_stop_polling()
717 kthread_stop(pt1->kthread); in pt1_stop_polling()
718 pt1->kthread = NULL; in pt1_stop_polling()
1318 if (pt1->kthread) in pt1_remove()
[all …]
/kernel/linux/linux-5.10/Documentation/RCU/
Dstallwarn.rst42 This message will include information on when the kthread last
44 result in the ``rcu_.*kthread starved for`` console-log message,
233 detection passes that the grace-period kthread has made across this
271 …All QSes seen, last rcu_preempt kthread activity 23807 (4297905177-4297881370), jiffies_till_next_…
274 since the grace-period kthread ran. The "jiffies_till_next_fqs"
275 indicates how frequently that kthread should run, giving the number
280 If the relevant grace-period kthread has been unable to run prior to
284 kthread starved for 23807 jiffies! g7075 f0x0 RCU_GP_WAIT_FQS(3) ->state=0x1 ->cpu=5
290 to the grace-period kthread, the "RCU_GP_WAIT_FQS" indicates that the
291 kthread is waiting for a short timeout, the "state" precedes value of the
[all …]
/kernel/linux/linux-5.10/fs/ecryptfs/
DMakefile9 crypto.o keystore.o kthread.o debug.o
/kernel/linux/linux-5.10/tools/testing/selftests/proc/
D.gitignore4 /fd-003-kthread
DMakefile8 TEST_GEN_PROGS += fd-003-kthread
/kernel/linux/linux-5.10/drivers/iio/trigger/
DKconfig49 tristate "A kthread based hammering loop trigger"
54 Uses a tight loop in a kthread. Will only work with lower half only
/kernel/linux/linux-5.10/drivers/media/i2c/
Dmsp3400-driver.c305 if (NULL == state->kthread) in msp_wake_thread()
853 state->kthread = kthread_run(thread_func, client, "msp34xx"); in msp_probe()
855 if (IS_ERR(state->kthread)) in msp_probe()
868 if (state->kthread) { in msp_remove()
870 kthread_stop(state->kthread); in msp_remove()

123