From: Jens Axboe <axboe@suse.de>
To: Nick Piggin <nickpiggin@yahoo.com.au>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@osdl.org>, Linus Torvalds <torvalds@osdl.org>
Subject: Re: [PATCH] possible rq starvation on oom
Date: Thu, 13 Jan 2005 12:01:23 +0100 [thread overview]
Message-ID: <20050113110119.GM2815@suse.de> (raw)
In-Reply-To: <41E65133.6060107@yahoo.com.au>
On Thu, Jan 13 2005, Nick Piggin wrote:
> Jens Axboe wrote:
> >Hi,
> >
> >I stumbled across this the other day. The block layer only uses a single
> >memory pool for request allocation, so it's very possible for eg writes
> >to have allocated them all at any point in time. If that is the case and
> >the machine is low on memory, a reader attempting to allocate a request
> >and failing in blk_alloc_request() can get stuck for a long time since
> >no one is there to wake it up.
> >
>
> Yeah, this would do it for sure. Nice work Jens.
>
> Actually, this could block up requests indefinitely couldn't it?
Yes it would, there's no one to wake the reader up. So if you are
unlucky enough that no one else attempts to read from that queue, you
would be stuck forever.
> >The solution is either to add the extra mempool so both reads and writes
> >have one, or attempt to handle the situation. I chose the latter, to
> >save the extra memory required for the additional mempool with
> >BLKDEV_MIN_RQ statically allocated requests per-queue.
> >
> >If a read allocation fails and we have no readers in flight for this
> >queue, mark us rq-starved so that the next write being freed will wake
> >up the sleeping reader(s). Same situation would happen for writes as
> >well of course, it's just a lot more unlikely.
> >
>
> I wonder... could you put failed, starved readers on the writer's
> waitqueue and vice versa? AFAIKS this would eliminate special casing
> in the fast paths, and also hopefully preserve process ordering.
That would work as well, indeed. You would move the special casing to
get_request_wait() and require an extra queue lock/unlock. Hmm. I think
the starved flag is more obviously correct and the cost is not really big
at all, it's just an unlikely check in the request freeing for the fast
case of not being oom. get_request_wait() is hit a lot more than the
additional __freed_request() would be.
--
Jens Axboe
prev parent reply other threads:[~2005-01-13 11:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-13 9:22 [PATCH] possible rq starvation on oom Jens Axboe
2005-01-13 10:45 ` Nick Piggin
2005-01-13 11:01 ` Jens Axboe [this message]
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=20050113110119.GM2815@suse.de \
--to=axboe@suse.de \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nickpiggin@yahoo.com.au \
--cc=torvalds@osdl.org \
/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