From: Manfred Spraul <manfred@colorfullife.com>
To: Rik van Riel <riel@conectiva.com.br>
Cc: linux-mm@kvack.org
Subject: Re: [PATCH] modified memory_pressure calculation
Date: Sun, 27 May 2001 19:44:27 +0200 [thread overview]
Message-ID: <3B113CFB.B1ABAE0A@colorfullife.com> (raw)
In-Reply-To: <Pine.LNX.4.21.0105271256500.1907-100000@imladris.rielhome.conectiva>
Rik van Riel wrote:
>
> On Sun, 27 May 2001, Manfred Spraul wrote:
>
> > * if reclaim_page() finds a page that is Referenced, Dirty or Locked
> > then it must increase memory_pressure.
>
> Why ?
>
Because it means that a page that was not really unused was detected by
reclaim_page.
It's not really an increase of the memory pressure, it's a decrease of
the efficiency of the inactive_clean_list.
I'll think about it again.
> > * I don't understand the purpose of the second ++ in alloc_pages().
>
> It's broken and should be removed. Thanks for spotting
> this one.
>
> > What about the attached patch [vs. 2.4.5]? It's just an idea, untested.
>
> Just remove the in_interrupt() check near PF_MEMALLOC, will you?
>
Of course.
I forgot to remove that line, it's unrelated to the memory_pressure
calculation. But I think it's another problem I spotted.
> Adding that check makes it possible for a pingflood to deadlock
> kswapd, as the network card can allocate the very last pages in
> the system and kswapd needs those pages to free up memory.
>
Are you sure? It should be the other way around:
> if (z->free_pages < z->pages_min / 4 &&
> - !(current->flags & PF_MEMALLOC))
> + (in_interrupt() || !(current->flags & PF_MEMALLOC)))
> continue;
It's 'if (in_interrupt()) continue', not 'if (in_interrupt()) alloc'.
Currently a network card can allocate the last few pages if the
interrupt occurs in the context of the PF_MEMALLOC thread. I think
PF_MEMALLOC memory should never be available to interrupt handlers.
--
Manfred
--
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/
next prev parent reply other threads:[~2001-05-27 17:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-05-27 12:30 Manfred Spraul
2001-05-27 15:58 ` Rik van Riel
2001-05-27 17:44 ` Manfred Spraul [this message]
2001-05-27 17:51 ` Rik van Riel
2001-05-27 18:24 ` Manfred Spraul
2001-05-27 18:40 ` Rik van Riel
2001-05-28 17:29 ` Marcelo Tosatti
2001-05-28 19:20 ` Manfred Spraul
2001-05-28 18:07 ` Marcelo Tosatti
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=3B113CFB.B1ABAE0A@colorfullife.com \
--to=manfred@colorfullife.com \
--cc=linux-mm@kvack.org \
--cc=riel@conectiva.com.br \
/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