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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ecryptfs/
H A DMakefile7 ecryptfs-objs := dentry.o file.o inode.o main.o super.o mmap.o read_write.o crypto.o keystore.o messaging.o miscdev.o kthread.o debug.o
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wimax/i2400m/
H A Dusb-tx.c249 struct task_struct *kthread; local
251 kthread = kthread_run(i2400mu_txd, i2400mu, "%s-tx",
253 /* the kthread function sets i2400mu->tx_thread */
254 if (IS_ERR(kthread)) {
255 result = PTR_ERR(kthread);
266 struct task_struct *kthread; local
269 kthread = i2400mu->tx_kthread;
272 if (kthread)
273 kthread_stop(kthread);
275 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.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dkthread.c9 #include <linux/kthread.h>
27 /* Information passed to kthread() from kthreadd. */
38 struct kthread { struct
45 container_of((tsk)->vfork_done, struct kthread, exited)
48 * kthread_should_stop - should this kthread return now?
50 * When someone calls kthread_stop() on your kthread, it will be woken
61 * kthread_data - return data value specified on kthread creation
62 * @task: kthread task in question
64 * Return the data value specified when kthread @task was created.
73 static int kthread(voi function
209 struct kthread *kthread; local
[all...]
H A Dhung_task.c14 #include <linux/kthread.h>
191 * kthread which checks for tasks stuck in D state
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/samples/trace_events/
H A Dtrace-events-sample.c2 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/kernel/
H A DMakefile7 ptrace.o setup.o time.o sys_mn10300.o io.o kthread.o \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/fcoe/
H A Dfcoe.h24 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hwmon/ams/
H A Dams.h3 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/usbip/
H A Dusbip_event.c21 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/cio/
H A Dcrw.c12 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/pt1/
H A Dpt1.c29 #include <linux/kthread.h>
79 struct task_struct *kthread; member in struct:pt1
1022 kthread_stop(pt1->kthread);
1045 struct task_struct *kthread; local
1141 kthread = kthread_run(pt1_thread, pt1, "pt1");
1142 if (IS_ERR(kthread)) {
1143 ret = PTR_ERR(kthread);
1147 pt1->kthread = kthread;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dmsp3400-driver.h101 struct task_struct *kthread; member in struct:msp_state
H A Dvivi.c25 #include <linux/kthread.h>
153 struct task_struct *kthread; member in struct:vivi_dmaqueue
592 dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
594 if (IS_ERR(dma_q->kthread)) {
618 if (dma_q->kthread) {
619 kthread_stop(dma_q->kthread);
620 dma_q->kthread = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/parisc/
H A Dpower.c43 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/kernel/
H A Dspinlock_test.c2 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jffs2/
H A Dbackground.c19 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/batman-adv/
H A Dmain.h115 #include <linux/kthread.h> /* kernel threads */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/ehca/
H A Dehca_tools.h51 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/bluetooth/
H A Dbtmrvl_drv.h22 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dcheck.c3 #include <linux/kthread.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/solo6x10/
H A Dsolo6010-v4l2.c22 #include <linux/kthread.h>
48 struct task_struct *kthread; member in struct:solo_filehandle
318 fh->kthread = kthread_run(solo_thread, fh, SOLO6010_NAME "_disp");
320 if (IS_ERR(fh->kthread))
321 return PTR_ERR(fh->kthread);
328 if (fh->kthread) {
329 kthread_stop(fh->kthread);
330 fh->kthread = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mfd/
H A Dtwl6030-irq.c37 #include <linux/kthread.h>

Completed in 140 milliseconds

1234567891011>>