Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\kthread.c Create Date:2022-07-28 09:30:28
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:kthread_create_worker_on_cpu - create a kthread worker and bind it* it to a given CPU and the associated NUMA node

Proto:struct kthread_worker *kthread_create_worker_on_cpu(int cpu, unsigned int flags, const char namefmt[], ...)

Type:struct kthread_worker

Parameter:

TypeParameterName
intcpu
unsigned intflags
const charnamefmt
763  va_start(args, namefmt)
764  worker = __kthread_create_worker(cpu, flags, namefmt, args)
765  va_end(args)
767  Return worker