From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: linux-kernel@vger.kernel.org, xen-devel@lists.xensource.com
Subject: Re: [PATCH 2/2] m2p_find_override: use list_for_each_entry_safe
Date: Tue, 27 Mar 2012 10:26:55 -0400 [thread overview]
Message-ID: <20120327142654.GA30655@phenom.dumpdata.com> (raw)
In-Reply-To: <1332856364-29995-2-git-send-email-stefano.stabellini@eu.citrix.com>
On Tue, Mar 27, 2012 at 02:52:44PM +0100, Stefano Stabellini wrote:
> Use list_for_each_entry_safe and remove the spin_lock acquisition in
> m2p_find_override.
So this would allow us to get stale entries. Is that OK?
>
> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> ---
> arch/x86/xen/p2m.c | 8 ++------
> 1 files changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c
> index 1b267e7..7ed8cc3 100644
> --- a/arch/x86/xen/p2m.c
> +++ b/arch/x86/xen/p2m.c
> @@ -809,21 +809,17 @@ struct page *m2p_find_override(unsigned long mfn)
> {
> unsigned long flags;
> struct list_head *bucket = &m2p_overrides[mfn_hash(mfn)];
> - struct page *p, *ret;
> + struct page *p, *t, *ret;
>
> ret = NULL;
>
> - spin_lock_irqsave(&m2p_override_lock, flags);
> -
> - list_for_each_entry(p, bucket, lru) {
> + list_for_each_entry_safe(p, t, bucket, lru) {
> if (page_private(p) == mfn) {
> ret = p;
> break;
> }
> }
>
> - spin_unlock_irqrestore(&m2p_override_lock, flags);
> -
> return ret;
> }
>
> --
> 1.7.2.5
next prev parent reply other threads:[~2012-03-27 14:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-27 13:52 [PATCH 1/2] xen: enter/exit lazy_mmu_mode around m2p_override calls Stefano Stabellini
2012-03-27 13:52 ` [PATCH 2/2] m2p_find_override: use list_for_each_entry_safe Stefano Stabellini
2012-03-27 14:26 ` Konrad Rzeszutek Wilk [this message]
2012-03-27 16:37 ` Stefano Stabellini
2012-03-27 17:59 ` [Xen-devel] " Konrad Rzeszutek Wilk
2012-03-29 14:03 ` Stefano Stabellini
2012-03-27 14:31 ` [PATCH 1/2] xen: enter/exit lazy_mmu_mode around m2p_override calls Konrad Rzeszutek Wilk
2012-03-27 16:56 ` Stefano Stabellini
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=20120327142654.GA30655@phenom.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.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;
as well as URLs for NNTP newsgroup(s).