From: zhong jiang <zhongjiang@huawei.com>
To: Minchan Kim <minchan@kernel.org>
Cc: vinayak menon <vinayakm.list@gmail.com>,
Vinayak Menon <vinmenon@codeaurora.org>,
Andrew Morton <akpm@linux-foundation.org>,
Johannes Weiner <hannes@cmpxchg.org>,
mgorman@techsingularity.net, vbabka@suse.cz, mhocko@suse.com,
Rik van Riel <riel@redhat.com>,
vdavydov.dev@gmail.com, anton.vorontsov@linaro.org,
Shiraz Hashim <shiraz.hashim@gmail.com>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm: vmscan: do not pass reclaimed slab to vmpressure
Date: Wed, 7 Jun 2017 11:07:22 +0800 [thread overview]
Message-ID: <59376DEA.2080900@huawei.com> (raw)
In-Reply-To: <20170607025324.GB18007@bbox>
On 2017/6/7 10:53, Minchan Kim wrote:
> Hi,
>
> On Tue, Jun 06, 2017 at 09:00:55PM +0800, zhong jiang wrote:
>> On 2017/1/31 7:40, Minchan Kim wrote:
>>> Hi Vinayak,
>>> Sorry for late response. It was Lunar New Year holidays.
>>>
>>> On Fri, Jan 27, 2017 at 01:43:23PM +0530, vinayak menon wrote:
>>>>> Thanks for the explain. However, such case can happen with THP page
>>>>> as well as slab. In case of THP page, nr_scanned is 1 but nr_reclaimed
>>>>> could be 512 so I think vmpressure should have a logic to prevent undeflow
>>>>> regardless of slab shrinking.
>>>>>
>>>> I see. Going to send a vmpressure fix. But, wouldn't the THP case
>>>> result in incorrect
>>>> vmpressure reporting even if we fix the vmpressure underflow problem ?
>>> If a THP page is reclaimed, it reports lower pressure due to bigger
>>> reclaim ratio(ie, reclaimed/scanned) compared to normal pages but
>>> it's not a problem, is it? Because VM reclaimed more memory than
>>> expected so memory pressure isn't severe now.
>> Hi, Minchan
>>
>> THP lru page is reclaimed, reclaim ratio bigger make sense. but I read the code, I found
>> THP is split to normal pages and loop again. reclaimed pages should not be bigger
>> than nr_scan. because of each loop will increase nr_scan counter.
>>
>> It is likely I miss something. you can point out the point please.
> You are absolutely right.
>
> I got confused by nr_scanned from isolate_lru_pages and sc->nr_scanned
> from shrink_page_list.
>
> Thanks.
>
>
> .
>
Hi, Minchan
I will send the revert patch shortly. how do you think?
Thanks
zhongjiang
--
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>
WARNING: multiple messages have this Message-ID (diff)
From: zhong jiang <zhongjiang@huawei.com>
To: Minchan Kim <minchan@kernel.org>
Cc: vinayak menon <vinayakm.list@gmail.com>,
Vinayak Menon <vinmenon@codeaurora.org>,
Andrew Morton <akpm@linux-foundation.org>,
Johannes Weiner <hannes@cmpxchg.org>,
<mgorman@techsingularity.net>, <vbabka@suse.cz>,
<mhocko@suse.com>, Rik van Riel <riel@redhat.com>,
<vdavydov.dev@gmail.com>, <anton.vorontsov@linaro.org>,
Shiraz Hashim <shiraz.hashim@gmail.com>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm: vmscan: do not pass reclaimed slab to vmpressure
Date: Wed, 7 Jun 2017 11:07:22 +0800 [thread overview]
Message-ID: <59376DEA.2080900@huawei.com> (raw)
In-Reply-To: <20170607025324.GB18007@bbox>
On 2017/6/7 10:53, Minchan Kim wrote:
> Hi,
>
> On Tue, Jun 06, 2017 at 09:00:55PM +0800, zhong jiang wrote:
>> On 2017/1/31 7:40, Minchan Kim wrote:
>>> Hi Vinayak,
>>> Sorry for late response. It was Lunar New Year holidays.
>>>
>>> On Fri, Jan 27, 2017 at 01:43:23PM +0530, vinayak menon wrote:
>>>>> Thanks for the explain. However, such case can happen with THP page
>>>>> as well as slab. In case of THP page, nr_scanned is 1 but nr_reclaimed
>>>>> could be 512 so I think vmpressure should have a logic to prevent undeflow
>>>>> regardless of slab shrinking.
>>>>>
>>>> I see. Going to send a vmpressure fix. But, wouldn't the THP case
>>>> result in incorrect
>>>> vmpressure reporting even if we fix the vmpressure underflow problem ?
>>> If a THP page is reclaimed, it reports lower pressure due to bigger
>>> reclaim ratio(ie, reclaimed/scanned) compared to normal pages but
>>> it's not a problem, is it? Because VM reclaimed more memory than
>>> expected so memory pressure isn't severe now.
>> Hi, Minchan
>>
>> THP lru page is reclaimed, reclaim ratio bigger make sense. but I read the code, I found
>> THP is split to normal pages and loop again. reclaimed pages should not be bigger
>> than nr_scan. because of each loop will increase nr_scan counter.
>>
>> It is likely I miss something. you can point out the point please.
> You are absolutely right.
>
> I got confused by nr_scanned from isolate_lru_pages and sc->nr_scanned
> from shrink_page_list.
>
> Thanks.
>
>
> .
>
Hi, Minchan
I will send the revert patch shortly. how do you think?
Thanks
zhongjiang
next prev parent reply other threads:[~2017-06-07 3:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-25 11:38 [PATCH] mm: vmscan: do not pass reclaimed slab to vmpressure Vinayak Menon
2017-01-25 11:38 ` Vinayak Menon
2017-01-25 23:27 ` Minchan Kim
2017-01-25 23:27 ` Minchan Kim
2017-01-26 5:23 ` vinayak menon
2017-01-26 5:23 ` vinayak menon
2017-01-26 14:18 ` Minchan Kim
2017-01-26 14:18 ` Minchan Kim
2017-01-27 8:13 ` vinayak menon
2017-01-27 8:13 ` vinayak menon
2017-01-30 23:40 ` Minchan Kim
2017-01-30 23:40 ` Minchan Kim
2017-06-06 13:00 ` zhong jiang
2017-06-06 13:00 ` zhong jiang
2017-06-07 2:53 ` Minchan Kim
2017-06-07 2:53 ` Minchan Kim
2017-06-07 3:07 ` zhong jiang [this message]
2017-06-07 3:07 ` zhong jiang
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=59376DEA.2080900@huawei.com \
--to=zhongjiang@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=anton.vorontsov@linaro.org \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@techsingularity.net \
--cc=mhocko@suse.com \
--cc=minchan@kernel.org \
--cc=riel@redhat.com \
--cc=shiraz.hashim@gmail.com \
--cc=vbabka@suse.cz \
--cc=vdavydov.dev@gmail.com \
--cc=vinayakm.list@gmail.com \
--cc=vinmenon@codeaurora.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 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.