Symbol: kthread_create
sys/bus/cam/cam_xpt.c
1535
if (kthread_create(xpt_scanner_thread, NULL, NULL, "xpt_thrd")) {
sys/bus/u4b/usb_process.c
59
kthread_create((f), (s), (p), __VA_ARGS__)
sys/dev/acpica/acpi_thermal.c
1290
error = kthread_create(acpi_tz_cooling_thread, sc,
sys/dev/acpica/acpi_thermal.c
335
error = kthread_create(acpi_tz_thread, NULL, &acpi_tz_td,
sys/dev/apple/smc/smc_thermal.c
230
error = kthread_create(apple_smc_thermal_thread, dev,
sys/dev/disk/ahci/ahci_dragonfly.c
271
kthread_create(ahci_port_thread, ap, &ap->ap_thread,
sys/dev/disk/iscsi/initiator/isc_sm.c
807
return kthread_create(ism_proc, sp, &sp->stp, "ism_%d", sp->sid);
sys/dev/disk/iscsi/initiator/isc_soc.c
674
kthread_create(isc_soc, sp, &sp->soc_thr, "iscsi%d", sp->sid);
sys/dev/disk/isp/isp_freebsd.c
42
#define THREAD_CREATE kthread_create
sys/dev/disk/mmcsd/mmcsd.c
156
kthread_create(mmcsd_task, sc, &sc->td, "mmc/sd card task");
sys/dev/disk/mmcsd/mmcsd.c
279
kthread_create(mmcsd_task, sc, &sc->td, "mmc/sd card task");
sys/dev/disk/mpt/mpt_cam.c
3883
error = kthread_create(mpt_recovery_thread, mpt,
sys/dev/disk/mpt/mpt_raid.c
645
error = kthread_create(mpt_raid_thread, mpt,
sys/dev/disk/nvme/nvme_admin.c
81
kthread_create(nvme_admin_thread, sc, &sc->admintd, "nvme_admin");
sys/dev/disk/sili/sili_dragonfly.c
201
kthread_create(sili_port_thread, ap, &ap->ap_thread,
sys/dev/drm/linux_tasklet.c
200
kthread_create(tasklet_runner, NULL, &tasklet_td, "tasklet_runner");
sys/dev/misc/ipmi/ipmi_kcs.c
476
return (kthread_create(kcs_loop, sc, &sc->ipmi_kthread, "%s: kcs",
sys/dev/misc/ipmi/ipmi_smic.c
382
return (kthread_create(smic_loop, sc, &sc->ipmi_kthread,
sys/dev/misc/ipmi/ipmi_ssif.c
357
return (kthread_create(ssif_loop, sc, &sc->ipmi_kthread,
sys/dev/misc/tbridge/tbridge.c
266
error = kthread_create(tbridge_curtest->tb_run, NULL, &td,
sys/dev/pccard/pccbb/pccbb_pci.c
405
if (kthread_create(cbb_event_thread, sc, &sc->event_thread,
sys/dev/raid/aac/aac.c
324
if (kthread_create(aac_command_thread, sc,
sys/dev/raid/ciss/ciss.c
4118
if (kthread_create((void(*)(void *))ciss_notify_thread, sc,
sys/dev/raid/mpr/mprvar.h
859
kthread_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg)
sys/dev/raid/mps/mpsvar.h
769
kthread_create(func, farg, proc_ptr, fmtstr, arg)
sys/dev/raid/mrsas/mrsas.c
817
error = kthread_create(mrsas_ocr_thread, sc, &sc->ocr_thread, "mrsas_ocr%d",
sys/dev/sound/midi/sequencer.c
578
kthread_create
sys/dev/video/bktr/msp34xx.c
1192
err = kthread_create(msp->simple ? msp3410d_thread : msp3400c_thread,
sys/dev/virtual/virtio/balloon/virtio_balloon.c
335
error = kthread_create(vtballoon_thread, sc, &sc->vtballoon_td, "virtio_balloon");
sys/kern/kern_kthread.c
176
error = kthread_create((void (*)(void *))kp->func, NULL,
sys/kern/kern_mpipe.c
112
kthread_create(mpipe_thread, mpipe, &mpipe->thread,
sys/kern/vfs_sync.c
323
kthread_create(syncer_thread, ctx, &ctx->sc_thread,
sys/net/ipfw3_basic/ip_fw3_sync.c
260
error = kthread_create(ip_fw3_sync_edge_socket_handler, NULL,
sys/net/pf/pf_ioctl.c
294
if (kthread_create(pf_purge_thread, NULL, NULL, "pfpurge"))
sys/sys/kthread.h
61
int kthread_create (void (*)(void *), void *, struct thread **,