9
votes
How does one submit a potential patch to the Linux kernel?
Before anything else:
concentrating about the performance bug report, and getting it right (with repeatable benchmarks) will at least help you to get people to bother with the problem. Also submit …
2
votes
Queues in the Linux Kernel
Are you looking for include/linux/kfifo.h?
From the heading:
A simple kernel FIFO implementation.
It's rather new anyway, so it's not hard to find direc …
5
votes
How good is the linux kernel in the new Quad Core processors running multithreading application
Given that kernel developers like Christoph Lameter (and Ingo Molnar on the scheduler) have tuned the kernel to work well on 4096 processors, and given the amount of optimizations invested by Intel …
1
vote
Multithreading and Interrupts
The OS gets to set up where interrupts are handled. Linux does load balancing of interrupts, so that they can be handled by both CPUs. Each interrupt handler needs to acquire a lock, to avoid concu …
0
votes
How to write Linux driver module call/use another driver module?
You forgot to mention that you should also study try_module_get/module_put/symbol_get/symbol_put/symbol_request, for ensuring loading of the other module, and the fact that it is not unloaded durin …
1
vote
How does one submit a potential patch to the Linux kernel?
On the EDIT, the answer might be interesting as an example case.
I guess your requirement is totally reasonable, but you're right that even a test on context switch might be too expensive. But sinc …
