From: Matthew Wilcox <matthew@wil.cx>
To: Simon Horman <horms@verge.net.au>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
Tony Luck <tony.luck@intel.com>, Keith Owens <kaos@ocs.com.au>
Subject: Re: [patch] IA64: suppress return value of down_trylock() in salinfo_work_to_do()
Date: Sat, 2 Aug 2008 19:44:09 -0600 [thread overview]
Message-ID: <20080803014408.GC26461@parisc-linux.org> (raw)
In-Reply-To: <20080803013159.GB26461@parisc-linux.org>
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."
next prev parent reply other threads:[~2008-08-03 1:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-03 0:06 [patch] IA64: suppress return value of down_trylock() in salinfo_work_to_do() Simon Horman
2008-08-03 1:32 ` Matthew Wilcox
2008-08-03 1:44 ` Matthew Wilcox [this message]
2008-08-03 2:08 ` Keith Owens
2008-08-03 2:43 ` Matthew Wilcox
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080803014408.GC26461@parisc-linux.org \
--to=matthew@wil.cx \
--cc=horms@verge.net.au \
--cc=kaos@ocs.com.au \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tony.luck@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox