Searched refs:kthread (Results 1 - 25 of 228) sorted by relevance

12345678910

/drivers/net/wimax/i2400m/
H A Dusb-tx.c246 struct task_struct *kthread; local
248 kthread = kthread_run(i2400mu_txd, i2400mu, "%s-tx",
250 /* the kthread function sets i2400mu->tx_thread */
251 if (IS_ERR(kthread)) {
252 result = PTR_ERR(kthread);
263 struct task_struct *kthread; local
266 kthread = i2400mu->tx_kthread;
269 if (kthread)
270 kthread_stop(kthread);
272 d_printf(1, dev, "TX: kthread ha
[all...]
H A Dusb-rx.c47 * we call i2400mu_rx_kick(); that wakes up the RX kthread, which
436 struct task_struct *kthread; local
438 kthread = kthread_run(i2400mu_rxd, i2400mu, "%s-rx",
440 /* the kthread function sets i2400mu->rx_thread */
441 if (IS_ERR(kthread)) {
442 result = PTR_ERR(kthread);
454 struct task_struct *kthread; local
457 kthread = i2400mu->rx_kthread;
460 if (kthread)
461 kthread_stop(kthread);
[all...]
H A Di2400m-usb.h68 #include <linux/kthread.h>
180 * @tx_wq: waitqueue for the TX kthread to sleep when there is no data
188 * @rx_wq: waitqueue for the RX kthread to sleep when there is no data
193 * still not handled by the RX kthread.
/drivers/staging/speakup/
H A Dthread.c1 #include <linux/kthread.h>
/drivers/gpu/drm/gma500/
H A Dmdfld_dsi_pkg_sender.h29 #include <linux/kthread.h>
/drivers/macintosh/ams/
H A Dams.h3 #include <linux/kthread.h>
/drivers/scsi/fcoe/
H A Dfcoe.h24 #include <linux/kthread.h>
/drivers/staging/bcm/
H A Dheaders.h33 #include <linux/kthread.h>
/drivers/staging/usbip/
H A Dusbip_event.c20 #include <linux/kthread.h>
H A Dvhci_sysfs.c20 #include <linux/kthread.h>
/drivers/media/dvb/pt1/
H A Dpt1.c29 #include <linux/kthread.h>
80 struct task_struct *kthread; member in struct:pt1
494 if (!pt1->kthread) {
495 pt1->kthread = kthread_run(pt1_thread, pt1, "earth-pt1");
496 if (IS_ERR(pt1->kthread)) {
497 ret = PTR_ERR(pt1->kthread);
498 pt1->kthread = NULL;
528 if (count == 0 && pt1->kthread) {
529 kthread_stop(pt1->kthread);
530 pt1->kthread
[all...]
/drivers/misc/sgi-xp/
H A Dxpc_main.c53 #include <linux/kthread.h>
331 * The first kthread assigned to a newly activated partition is the one
333 * that kthread until the partition is brought down, at which time that kthread
334 * returns back to XPC HB. (The return of that kthread will signify to XPC HB
336 * partition.) This kthread becomes the channel manager for that partition.
524 * kthread and that kthread will call this function to attempt to set up the
528 * The kthread that was created by XPC HB and which setup the XPC
531 * time the kthread wil
591 struct task_struct *kthread; local
781 struct task_struct *kthread; local
1204 struct task_struct *kthread; local
[all...]
/drivers/bluetooth/
H A Dbtmrvl_drv.h22 #include <linux/kthread.h>
/drivers/infiniband/hw/ehca/
H A Dehca_tools.h51 #include <linux/kthread.h>
/drivers/media/video/
H A Dmsp3400-driver.h101 struct task_struct *kthread; member in struct:msp_state
H A Dvivi.c27 #include <linux/kthread.h>
148 struct task_struct *kthread; member in struct:vivi_dmaqueue
611 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
613 if (IS_ERR(dma_q->kthread)) {
615 return PTR_ERR(dma_q->kthread);
631 if (dma_q->kthread) {
632 kthread_stop(dma_q->kthread);
633 dma_q->kthread = NULL;
H A Dmsp3400-driver.c54 #include <linux/kthread.h>
291 if (NULL == state->kthread)
838 state->kthread = kthread_run(thread_func, client, "msp34xx");
840 if (IS_ERR(state->kthread))
853 if (state->kthread) {
855 kthread_stop(state->kthread);
/drivers/parisc/
H A Dpower.c43 #include <linux/kthread.h>
/drivers/s390/cio/
H A Dcrw.c12 #include <linux/kthread.h>
/drivers/staging/media/solo6x10/
H A Dv4l2.c22 #include <linux/kthread.h>
45 struct task_struct *kthread; member in struct:solo_filehandle
416 fh->kthread = kthread_run(solo_thread, fh, SOLO6X10_NAME "_disp");
418 if (IS_ERR(fh->kthread))
419 return PTR_ERR(fh->kthread);
426 if (fh->kthread) {
427 kthread_stop(fh->kthread);
428 fh->kthread = NULL;
H A Dv4l2-enc.c22 #include <linux/kthread.h>
47 struct task_struct *kthread; member in struct:solo_enc_fh
220 if (fh->kthread) {
221 kthread_stop(fh->kthread);
222 fh->kthread = NULL;
239 fh->kthread = kthread_run(solo_enc_thread, fh, SOLO6X10_NAME "_enc");
242 if (IS_ERR(fh->kthread)) {
247 return PTR_ERR(fh->kthread);
/drivers/usb/storage/
H A Dlibusual.c11 #include <linux/kthread.h>
/drivers/media/video/saa7164/
H A Dsaa7164.h53 #include <linux/kthread.h>
477 struct task_struct *kthread; member in struct:saa7164_dev
/drivers/media/rc/
H A Dir-raw.c16 #include <linux/kthread.h>
/drivers/media/video/cx25821/
H A Dcx25821-video.h36 #include <linux/kthread.h>

Completed in 2085 milliseconds

12345678910