Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1589104
| Path | csiph.com!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | hejianet <hejianet@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages |
| Date | Tue, 28 Feb 2017 03:00:01 +0100 |
| Message-ID | <tfFf3-5LI-1@gated-at.bofh.it> (permalink) |
| References | <tei1b-4PN-1@gated-at.bofh.it> <tekZ3-72W-1@gated-at.bofh.it> <terQS-3oh-9@gated-at.bofh.it> <tfpjX-374-15@gated-at.bofh.it> <tfxKx-vQ-5@gated-at.bofh.it> |
| X-Original-To | Johannes Weiner <hannes@cmpxchg.org>, Michal Hocko <mhocko@kernel.org> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-transfer-encoding; bh=GL5Va6mKG8j7KKHBLoO6tC6AgRc3wOgJhb37OMq907A=; b=HiairXZZvuhbQSRLAwapeAqfS0DCmgmwfFV42FB2Z/+b0UVX9hxY70bMpMQ7XsKtiZ cWBt6oegksUuiGVvxQsFiDke+fQrtkWuo8c+EZXQ2kwHg8MQfLKelxM0vApWZl1+t769 2MZ5M0KRby2MiY+ROD/ncV7SOo3sLo+E0b3K/FaS5VFYYC4coiRaLUGVmry3eqq5WJct 5SJ9qZZ+KUIHja70SXm5r16+A3wZjqYahHK0X3Q9mzPGCT8kvnnHg0K4hSL++zisR3ov izcpunA9Ch71r2snpyeK7wVCfv05EyaEk0eb9wbYwV/4sp4XjMwVl+71CUk6DgF7n/UE 83ug== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=GL5Va6mKG8j7KKHBLoO6tC6AgRc3wOgJhb37OMq907A=; b=YMHXroj+GlBd+c1xEi0JqT0XhRunSSluS4l0Szfmz93IMAx9qEL2cFITw5BbRXJpAe v3JCVfc7X/MJwf5m75LNn9OmoJxJTq7kAEIywtS8nDj38zgxlgnhZcrZVdyz9604fF7S lJksAubO7yT52dbG1DJ5Dqm5UG8QQ9ZZ6KNN7ENtobe0DeeB7S8qH8RFcbSNht2P4EmE us34xO6ajLqGF4lJGXlUB/8hKgAJ4Sx3Ui1BwrWvs6PQTMhgk9sJWS43gry/2afBE9NP UkqvDs4syJ7HPMeis1Pw/qNQM2cbhgInldi2I+MmixhLN/j90U8nvq2yIHkGIsF0hYWB bKrw== |
| X-Gm-Message-State | AMke39kIHtjhbLy/z/8oa+QJwEYlFLtaeLpot5L70gCf7VWqQDMBuosgf2Ci6kexHHDbjQ== |
| X-Received | by 10.99.163.2 with SMTP id s2mr24791191pge.43.1488246811634; Mon, 27 Feb 2017 17:53:31 -0800 (PST) |
| User-Agent | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=windows-1252; format=flowed |
| Content-Transfer-Encoding | 7bit |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 82 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton <akpm@linux-foundation.org>, Mel Gorman <mgorman@techsingularity.net>, Vlastimil Babka <vbabka@suse.cz>, Minchan Kim <minchan@kernel.org>, Rik van Riel <riel@redhat.com> |
| X-Original-Date | Tue, 28 Feb 2017 09:53:20 +0800 |
| X-Original-Message-ID | <37863671-bc0b-3f70-1158-685f5b379789@gmail.com> |
| X-Original-References | <1487918992-7515-1-git-send-email-hejianet@gmail.com> <20170224084949.GA19161@dhcp22.suse.cz> <20170224165105.GB20092@cmpxchg.org> <20170227085024.GD14029@dhcp22.suse.cz> <20170227170634.GA20423@cmpxchg.org> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1589104 |
Show key headers only | View raw
Hi Johannes
I have another concern:
kswapd -> balance_pgdat -> age_active_anon
This code path will do some background works to age anon list, will this
patch have some impact on it if the retry time is > 16 and kswapd is
not waken up?
B.R.
Jia
On 28/02/2017 1:06 AM, Johannes Weiner wrote:
> On Mon, Feb 27, 2017 at 09:50:24AM +0100, Michal Hocko wrote:
>> On Fri 24-02-17 11:51:05, Johannes Weiner wrote:
>> [...]
>>> >From 29fefdca148e28830e0934d4e6cceb95ed2ee36e Mon Sep 17 00:00:00 2001
>>> From: Johannes Weiner <hannes@cmpxchg.org>
>>> Date: Fri, 24 Feb 2017 10:56:32 -0500
>>> Subject: [PATCH] mm: vmscan: disable kswapd on unreclaimable nodes
>>>
>>> Jia He reports a problem with kswapd spinning at 100% CPU when
>>> requesting more hugepages than memory available in the system:
>>>
>>> $ echo 4000 >/proc/sys/vm/nr_hugepages
>>>
>>> top - 13:42:59 up 3:37, 1 user, load average: 1.09, 1.03, 1.01
>>> Tasks: 1 total, 1 running, 0 sleeping, 0 stopped, 0 zombie
>>> %Cpu(s): 0.0 us, 12.5 sy, 0.0 ni, 85.5 id, 2.0 wa, 0.0 hi, 0.0 si, 0.0 st
>>> KiB Mem: 31371520 total, 30915136 used, 456384 free, 320 buffers
>>> KiB Swap: 6284224 total, 115712 used, 6168512 free. 48192 cached Mem
>>>
>>> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
>>> 76 root 20 0 0 0 0 R 100.0 0.000 217:17.29 kswapd3
>>>
>>> At that time, there are no reclaimable pages left in the node, but as
>>> kswapd fails to restore the high watermarks it refuses to go to sleep.
>>>
>>> Kswapd needs to back away from nodes that fail to balance. Up until
>>> 1d82de618ddd ("mm, vmscan: make kswapd reclaim in terms of nodes")
>>> kswapd had such a mechanism. It considered zones whose theoretically
>>> reclaimable pages it had reclaimed six times over as unreclaimable and
>>> backed away from them. This guard was erroneously removed as the patch
>>> changed the definition of a balanced node.
>>>
>>> However, simply restoring this code wouldn't help in the case reported
>>> here: there *are* no reclaimable pages that could be scanned until the
>>> threshold is met. Kswapd would stay awake anyway.
>>>
>>> Introduce a new and much simpler way of backing off. If kswapd runs
>>> through MAX_RECLAIM_RETRIES (16) cycles without reclaiming a single
>>> page, make it back off from the node. This is the same number of shots
>>> direct reclaim takes before declaring OOM. Kswapd will go to sleep on
>>> that node until a direct reclaimer manages to reclaim some pages, thus
>>> proving the node reclaimable again.
>>
>> Yes this looks, nice&simple. I would just be worried about [1] a bit.
>> Maybe that is worth a separate patch though.
>>
>> [1] http://lkml.kernel.org/r/20170223111609.hlncnvokhq3quxwz@dhcp22.suse.cz
>
> I think I'd prefer the simplicity of keeping this contained inside
> vmscan.c, as an interaction between direct reclaimers and kswapd, as
> well as leaving the wakeup tied to actually seeing reclaimable pages
> rather than merely producing free pages (e.g. should we also add a
> kick to a large munmap() for example?).
>
> OOM kills come with such high latencies that I cannot imagine a
> slightly quicker kswapd restart would matter in practice.
>
>>> Reported-by: Jia He <hejianet@gmail.com>
>>> Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
>>
>> Acked-by: Michal Hocko <mhocko@suse.com>
>
> Thanks!
>
>> I would have just one more suggestion. Please move MAX_RECLAIM_RETRIES
>> to mm/internal.h. This is MM internal thing and there is no need to make
>> it visible.
>
> Good point, I'll move it.
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Jia He <hejianet@gmail.com> - 2017-02-24 08:00 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Michal Hocko <mhocko@kernel.org> - 2017-02-24 11:10 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Johannes Weiner <hannes@cmpxchg.org> - 2017-02-24 18:30 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages hejianet <hejianet@gmail.com> - 2017-02-27 07:20 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Michal Hocko <mhocko@kernel.org> - 2017-02-27 10:00 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Johannes Weiner <hannes@cmpxchg.org> - 2017-02-27 19:00 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages Michal Hocko <mhocko@kernel.org> - 2017-02-27 21:00 +0100
Re: [PATCH v2] mm/vmscan: fix high cpu usage of kswapd if there are no reclaimable pages hejianet <hejianet@gmail.com> - 2017-02-28 03:00 +0100
csiph-web