Re: Kernel Thread in Device Driver

From: Peter W. Morreale
Date: Fri Dec 03 2004 - 10:25:49 EST


You might try adding a "yield()" in the loop, perhaps modulo some number of
interrupts handled (assuming, of course, your interrupts are queued).

yield() will place the current task at the 'end' of the run list and schedule(). If another task is
eligible to execute, it will get the slice.

-PWM



Kiran Kumar Gaitonde wrote:

Hi all.

I am working on a device driver with the device interrupts are actaully serviced in a kernel thread and not in the interrupt handler registered with the kernel. The interrupt handler justs wakes up the kthread when a interrupt occurs. This is done as we need to use semaphores while performing IO to sync the read and writes.
Now I have come across a situation where the kthread is consuming 70% of CPU time as it is in a loop to service the interrupts happening very very fast, and it is rearly saying schedule(). The performance of the application which uses this device to communicate, is not good as it is not getting CPU at the right time.

Can anybody tell me what may be the problem. Also any suggestions to overcome this issue?

Thanks in Advance,

Regards,
Kiran Gaitonde.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


--
Peter W. Morreale email: morreale@xxxxxxxxxxxxxxx
Director of Engineering Niwot, Colorado, USA
Radiant Data Corporation voice: (303) 652-0870 x108 -----------------------------------------------------------------------------
This transmission may contain information that is privileged, confidential
and/or exempt from disclosure under applicable law. If you are not the
intended recipient, you are hereby notified that any disclosure, copying,
distribution, or use of the information contained herein (including any
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
in error, please immediately contact the sender and destroy the material in
its entirety, whether in electronic or hard copy format. Thank you.



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/