On 7/7/07, Rajat Jain <[EMAIL PROTECTED]> wrote:



Hi,

> And if you don't want the kernel to preempt you you can disable
> preemption while doing your sleeping...  not very well behaved kernel
> code, but you can do it...

Huh? So something like following is allowed?

preempt_disable();
udelay(5);
preempt_enable();

?????

I must admit, this is a shock to me.

Hmmm even I think this is not possible, because these functions call
the schedule() function, which should not be done in atomic context.
It does a check for in_atomic() which checks the preempt_counter().

Rajat


--
Jesper Juhl <[EMAIL PROTECTED]>
Don't top-post
http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please
http://www.expita.com/nomime.html

--
To unsubscribe from this list: send an email with
"unsubscribe kernelnewbies" to [EMAIL PROTECTED]
Please read the FAQ at http://kernelnewbies.org/FAQ




--
The box said "Requires Windows Vista or better." So I installed LINUX

--
To unsubscribe from this list: send an email with
"unsubscribe kernelnewbies" to [EMAIL PROTECTED]
Please read the FAQ at http://kernelnewbies.org/FAQ

Reply via email to