All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Howells <dhowells@redhat.com>
To: Nick Piggin <npiggin@suse.de>
Cc: linux-arch@vger.kernel.org,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Memory Management List <linux-mm@kvack.org>
Subject: Re: [rfc] optimise unlock_page
Date: Tue, 08 May 2007 13:13:35 +0100	[thread overview]
Message-ID: <9948.1178626415@redhat.com> (raw)
In-Reply-To: <20070508114003.GB19294@wotan.suse.de>


Nick Piggin <npiggin@suse.de> wrote:

> This patch trades a page flag for a significant improvement in the unlock_page
> fastpath. Various problems in the previous version were spotted by Hugh and
> Ben (and fixed in this one).

It looks reasonable at first glance, though it does consume yet another page
flag:-/  However, I think that's probably a worthy trade.

>  }
> -	
> +
> +static inline void unlock_page(struct page *page)
> +{
> +	VM_BUG_ON(!PageLocked(page));
> +	ClearPageLocked_Unlock(page);
> +	if (unlikely(PageWaiters(page)))
> +		__unlock_page(page);
> +}
> +

Please don't simply discard the documentation, we have little enough as it is:

> -/**
> - * unlock_page - unlock a locked page
> - * @page: the page
> - *
> - * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
> - * Also wakes sleepers in wait_on_page_writeback() because the wakeup
> - * mechananism between PageLocked pages and PageWriteback pages is shared.
> - * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
> - *
> - * The mb is necessary to enforce ordering between the clear_bit and the read
> - * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).

David

WARNING: multiple messages have this Message-ID (diff)
From: David Howells <dhowells@redhat.com>
To: Nick Piggin <npiggin@suse.de>
Cc: linux-arch@vger.kernel.org,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Memory Management List <linux-mm@kvack.org>
Subject: Re: [rfc] optimise unlock_page
Date: Tue, 08 May 2007 13:13:35 +0100	[thread overview]
Message-ID: <9948.1178626415@redhat.com> (raw)
In-Reply-To: <20070508114003.GB19294@wotan.suse.de>

Nick Piggin <npiggin@suse.de> wrote:

> This patch trades a page flag for a significant improvement in the unlock_page
> fastpath. Various problems in the previous version were spotted by Hugh and
> Ben (and fixed in this one).

It looks reasonable at first glance, though it does consume yet another page
flag:-/  However, I think that's probably a worthy trade.

>  }
> -	
> +
> +static inline void unlock_page(struct page *page)
> +{
> +	VM_BUG_ON(!PageLocked(page));
> +	ClearPageLocked_Unlock(page);
> +	if (unlikely(PageWaiters(page)))
> +		__unlock_page(page);
> +}
> +

Please don't simply discard the documentation, we have little enough as it is:

> -/**
> - * unlock_page - unlock a locked page
> - * @page: the page
> - *
> - * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
> - * Also wakes sleepers in wait_on_page_writeback() because the wakeup
> - * mechananism between PageLocked pages and PageWriteback pages is shared.
> - * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
> - *
> - * The mb is necessary to enforce ordering between the clear_bit and the read
> - * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).

David

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2007-05-08 12:14 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-08 11:37 [rfc] lock bitops Nick Piggin
2007-05-08 11:40 ` [rfc] optimise unlock_page Nick Piggin
2007-05-08 11:40   ` Nick Piggin
2007-05-08 12:13   ` David Howells [this message]
2007-05-08 12:13     ` David Howells
2007-05-08 22:35     ` Nick Piggin
2007-05-08 22:35       ` Nick Piggin
2007-05-08 20:08   ` Hugh Dickins
2007-05-08 20:08     ` Hugh Dickins
2007-05-08 21:30   ` Benjamin Herrenschmidt
2007-05-08 21:30     ` Benjamin Herrenschmidt
2007-05-08 22:41     ` Nick Piggin
2007-05-08 22:41       ` Nick Piggin
2007-05-08 22:50       ` Nick Piggin
2007-05-08 22:50         ` Nick Piggin
2007-05-09 19:33         ` Hugh Dickins
2007-05-09 19:33           ` Hugh Dickins
2007-05-09 21:21           ` Benjamin Herrenschmidt
2007-05-09 21:21             ` Benjamin Herrenschmidt
2007-05-10  3:37           ` Nick Piggin
2007-05-10  3:37             ` Nick Piggin
2007-05-10 19:14             ` Hugh Dickins
2007-05-10 19:14               ` Hugh Dickins
2007-05-11  8:54               ` Nick Piggin
2007-05-11  8:54                 ` Nick Piggin
2007-05-11 13:15                 ` Hugh Dickins
2007-05-11 13:15                   ` Hugh Dickins
2007-05-13  3:32                   ` Nick Piggin
2007-05-13  3:32                     ` Nick Piggin
2007-05-13  4:39                     ` Hugh Dickins
2007-05-13  4:39                       ` Hugh Dickins
2007-05-13  6:52                       ` Nick Piggin
2007-05-13  6:52                         ` Nick Piggin
2007-05-16 17:54                         ` Hugh Dickins
2007-05-16 17:54                           ` Hugh Dickins
2007-05-16 18:18                           ` Nick Piggin
2007-05-16 18:18                             ` Nick Piggin
2007-05-16 19:28                             ` Hugh Dickins
2007-05-16 19:28                               ` Hugh Dickins
2007-05-16 19:47                               ` Linus Torvalds
2007-05-16 19:47                                 ` Linus Torvalds
2007-05-17  6:27                                 ` Nick Piggin
2007-05-17  6:27                                   ` Nick Piggin
2007-05-16 17:21                     ` Hugh Dickins
2007-05-16 17:21                       ` Hugh Dickins
2007-05-16 17:38                       ` Nick Piggin
2007-05-16 17:38                         ` Nick Piggin
2007-05-08 12:22 ` [rfc] lock bitops David Howells
2007-05-08 22:33   ` Nick Piggin
2007-05-09  6:18   ` Nick Piggin
2007-05-08 15:06 ` Matthew Wilcox
2007-05-08 21:23   ` Benjamin Herrenschmidt
2007-05-08 22:29   ` Nick Piggin
2007-05-08 22:40     ` Matthew Wilcox
2007-05-08 22:45       ` Nick Piggin
2007-05-09 12:08 ` Nikita Danilov
2007-05-09 12:20   ` Nick Piggin

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=9948.1178626415@redhat.com \
    --to=dhowells@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=benh@kernel.crashing.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=npiggin@suse.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.