Searched refs:kthread_create (Results 1 - 25 of 33) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dkthread.h7 struct task_struct *kthread_create(int (*threadfn)(void *data),
18 * Description: Convenient wrapper for kthread_create() followed by
24 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dkthread.c31 /* Result passed back to kthread_create() from kthreadd. */
114 * kthread_create - create a kthread.
132 struct task_struct *kthread_create(int (*threadfn)(void *data), function
167 EXPORT_SYMBOL(kthread_create); variable
171 * @p: thread created by kthread_create().
176 * stopped (i.e., just returned from kthread_create()).
193 * kthread_stop - stop a thread created by kthread_create().
194 * @k: thread created by kthread_create().
197 * waits for it to exit. This can also be called after kthread_create()
272 * This function can be used as @threadfn to kthread_create() o
[all...]
H A Dstop_machine.c303 p = kthread_create(cpu_stopper_thread, stopper, "migration/%d",
H A Dwatchdog.c433 p = kthread_create(watchdog, (void *)(unsigned long)cpu, "watchdog/%d", cpu);
H A Dworkqueue.c1337 worker->task = kthread_create(worker_thread, worker,
1340 worker->task = kthread_create(worker_thread, worker,
2831 rescuer->task = kthread_create(rescuer_thread, wq, "%s", name);
3311 new_trustee = kthread_create(trustee_thread, gcwq,
3426 sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
H A Dsoftirq.c824 p = kthread_create(run_ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/
H A Dpageattr-test.c253 p = kthread_create(do_pageattr_test, NULL, "pageattr-test");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/tomoyo/
H A Dgc.c350 struct task_struct *task = kthread_create(tomoyo_gc_thread, NULL,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dbfin_jtag_comm.c244 bfin_jc_kthread = kthread_create(bfin_jc_emudat_manager, NULL, DRV_NAME);
H A Dapm-emulation.c655 kapmd_tsk = kthread_create(kapmd, NULL, "kapmd");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/trace/
H A Dring_buffer_benchmark.c429 consumer = kthread_create(ring_buffer_consumer_thread,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/gspca/m5602/
H A Dm5602_s5k83a.c312 sens_priv->rotation_thread = kthread_create(rotation_thread_function,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/irq/
H A Dmanage.c707 t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dbacking-dev.c450 task = kthread_create(bdi_writeback_thread, &bdi->wb,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ubifs/
H A Dsuper.c1237 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
1604 c->bgt = kthread_create(ubifs_bg_thread, c, "%s", c->bgt_name);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/ubi/
H A Dbuild.c962 ubi->bgt_thread = kthread_create(ubi_thread, ubi, ubi->bgt_name);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/storage/
H A Dusb.c998 th = kthread_create(usb_stor_scan_thread, us, "usb-stor-scan");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/ehca/
H A Dehca_irq.c789 cct->task = kthread_create(comp_task, cct, "ehca_comp/%d", cpu);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/block/
H A Dnbd.c654 thread = kthread_create(nbd_thread, lo, lo->disk->disk_name);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/
H A Dsvc.c676 task = kthread_create(serv->sv_function, rqstp, serv->sv_name);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/platform/x86/
H A Dintel_ips.c1590 ips->adjust = kthread_create(ips_adjust, ips, "ips-adjust");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/atm/
H A Dusbatm.c1031 t = kthread_create(usbatm_do_heavy_init, instance,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/bfa/
H A Dbfad.c1127 bfad->bfad_tsk = kthread_create(bfad_worker, (void *) bfad, "%s",
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/vhost/
H A Dvhost.c285 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dapm_32.c2115 kapmd_task = kthread_create(apm, NULL, "kapmd");

Completed in 197 milliseconds

12