From: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
To: Rik van Riel <riel@redhat.com>
Cc: linux-kernel@vger.kernel.org, Matt Domsch <Matt_Domsch@dell.com>,
Ernie Petrides <petrides@redhat.com>
Subject: Re: [PATCH] reserved buffers only for PF_MEMALLOC
Date: Tue, 10 Aug 2004 16:04:55 -0300 [thread overview]
Message-ID: <20040810190455.GA13349@logos.cnet> (raw)
In-Reply-To: <Pine.LNX.4.44.0408101310580.7156-100000@dhcp83-102.boston.redhat.com>
On Tue, Aug 10, 2004 at 01:20:24PM -0400, Rik van Riel wrote:
>
> The buffer allocation path in 2.4 has a long standing bug,
> where non-PF_MEMALLOC tasks can dig into the reserved pool
> in get_unused_buffer_head(). The following patch makes the
> reserved pool only accessible to PF_MEMALLOC tasks.
>
> Other processes will loop in create_buffers() - the only
> function that calls get_unused_buffer_head() - and will call
> try_to_free_pages(GFP_NOIO), freeing any buffer heads that
> have become freeable due to IO completion.
>
> Note that PF_MEMALLOC tasks will NOT do anything inside
> try_to_free_pages(), so it is needed that they are able to
> dig into the reserved buffer heads while other tasks are
> not.
Sounds the correct thing to do, thanks.
Out of curiosity: Do you actually seen any practical problem due to
get_unused_buffer_head() calls eating into the reserved pool?
Or have any testcase which would trigger a problem (OOM) due to it?
>
> Signed-off-by: Rik van Riel <riel@redhat.com>
>
> --- linux/fs/buffer.c.deadlock 2004-08-10 11:33:08.000000000 -0400
> +++ linux/fs/buffer.c 2004-08-10 11:34:54.000000000 -0400
> @@ -1260,8 +1260,9 @@ struct buffer_head * get_unused_buffer_h
>
> /*
> * If we need an async buffer, use the reserved buffer heads.
> + * Non-PF_MEMALLOC tasks can just loop in create_buffers().
> */
> - if (async) {
> + if (async && (current->flags & PF_MEMALLOC)) {
> spin_lock(&unused_list_lock);
> if (unused_list) {
> bh = unused_list;
next prev parent reply other threads:[~2004-08-10 20:12 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-08-10 17:20 [PATCH] reserved buffers only for PF_MEMALLOC Rik van Riel
2004-08-10 19:04 ` Marcelo Tosatti [this message]
2004-08-10 20:42 ` Matt Domsch
2004-08-10 19:50 ` Marcelo Tosatti
2004-08-10 20:59 ` Rik van Riel
2004-08-10 20:16 ` Marcelo Tosatti
2004-10-20 14:02 ` Matt Domsch
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=20040810190455.GA13349@logos.cnet \
--to=marcelo.tosatti@cyclades.com \
--cc=Matt_Domsch@dell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=petrides@redhat.com \
--cc=riel@redhat.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