lkml.org 
[lkml]   [2008]   [Aug]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [patch] IA64: suppress return value of down_trylock() in salinfo_work_to_do()
On Sat, Aug 02, 2008 at 07:32:00PM -0600, Matthew Wilcox wrote:
> I can't say that I think this is a good idea. Has anyone looked at what
> it would take to actually track this? For example, could we ever have
> the situation where:

Looking at this a bit more deeply, it seems to be a simple abuse of a
semaphore.

It's used both to exclude other tasks in salinfo_event_read() and as a
wake queue from interrupt context. I think what we want is something
more like this:

spin_lock(&data_saved_lock);
if (!worktodo) {
if (O_NONBLOCK)
spin_unlock()
return;
else
add to wait queue
spin_unlock()
schedule()
spin_lock()
}

Then we can just use wake_up() from interrupt context.

Thoughts? I don't have any idea how to generate salinfo events, so I
wouldn't be able to test.

--
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."


\
 
 \ /
  Last update: 2008-08-03 03:47    [W:0.551 / U:0.000 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site