Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1659352 > unrolled thread
| Started by | zhongjiang <zhongjiang@huawei.com> |
|---|---|
| First post | 2017-06-07 05:30 +0200 |
| Last post | 2017-06-07 08:20 +0200 |
| Articles | 6 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" zhongjiang <zhongjiang@huawei.com> - 2017-06-07 05:30 +0200
Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" Minchan Kim <minchan@kernel.org> - 2017-06-07 06:00 +0200
Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" zhong jiang <zhongjiang@huawei.com> - 2017-06-07 07:00 +0200
Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" vinayak menon <vinayakm.list@gmail.com> - 2017-06-07 08:20 +0200
Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" zhong jiang <zhongjiang@huawei.com> - 2017-06-07 08:50 +0200
Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" Minchan Kim <minchan@kernel.org> - 2017-06-07 08:20 +0200
| From | zhongjiang <zhongjiang@huawei.com> |
|---|---|
| Date | 2017-06-07 05:30 +0200 |
| Subject | [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" |
| Message-ID | <tPzPr-10q-1@gated-at.bofh.it> |
This reverts commit e1587a4945408faa58d0485002c110eb2454740c.
THP lru page is reclaimed , THP is split to normal page and loop again.
reclaimed pages should not be bigger than nr_scan. because of each
loop will increase nr_scan counter.
Signed-off-by: zhongjiang <zhongjiang@huawei.com>
---
mm/vmpressure.c | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/mm/vmpressure.c b/mm/vmpressure.c
index 6063581..149fdf6 100644
--- a/mm/vmpressure.c
+++ b/mm/vmpressure.c
@@ -112,16 +112,9 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
unsigned long reclaimed)
{
unsigned long scale = scanned + reclaimed;
- unsigned long pressure = 0;
+ unsigned long pressure;
/*
- * reclaimed can be greater than scanned in cases
- * like THP, where the scanned is 1 and reclaimed
- * could be 512
- */
- if (reclaimed >= scanned)
- goto out;
- /*
* We calculate the ratio (in percents) of how many pages were
* scanned vs. reclaimed in a given time frame (window). Note that
* time is in VM reclaimer's "ticks", i.e. number of pages
@@ -131,7 +124,6 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
pressure = scale - (reclaimed * scale / scanned);
pressure = pressure * 100 / scale;
-out:
pr_debug("%s: %3lu (s: %lu r: %lu)\n", __func__, pressure,
scanned, reclaimed);
--
1.7.12.4
[toc] | [next] | [standalone]
| From | Minchan Kim <minchan@kernel.org> |
|---|---|
| Date | 2017-06-07 06:00 +0200 |
| Subject | Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" |
| Message-ID | <tPAit-1dp-3@gated-at.bofh.it> |
| In reply to | #1659352 |
On Wed, Jun 07, 2017 at 11:08:37AM +0800, zhongjiang wrote:
> This reverts commit e1587a4945408faa58d0485002c110eb2454740c.
>
> THP lru page is reclaimed , THP is split to normal page and loop again.
> reclaimed pages should not be bigger than nr_scan. because of each
> loop will increase nr_scan counter.
Unfortunately, there is still underflow issue caused by slab pages as
Vinayak reported in description of e1587a4945408 so we cannot revert.
Please correct comment instead of removing the logic.
Thanks.
>
> Signed-off-by: zhongjiang <zhongjiang@huawei.com>
> ---
> mm/vmpressure.c | 10 +---------
> 1 file changed, 1 insertion(+), 9 deletions(-)
>
> diff --git a/mm/vmpressure.c b/mm/vmpressure.c
> index 6063581..149fdf6 100644
> --- a/mm/vmpressure.c
> +++ b/mm/vmpressure.c
> @@ -112,16 +112,9 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
> unsigned long reclaimed)
> {
> unsigned long scale = scanned + reclaimed;
> - unsigned long pressure = 0;
> + unsigned long pressure;
>
> /*
> - * reclaimed can be greater than scanned in cases
> - * like THP, where the scanned is 1 and reclaimed
> - * could be 512
> - */
> - if (reclaimed >= scanned)
> - goto out;
> - /*
> * We calculate the ratio (in percents) of how many pages were
> * scanned vs. reclaimed in a given time frame (window). Note that
> * time is in VM reclaimer's "ticks", i.e. number of pages
> @@ -131,7 +124,6 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
> pressure = scale - (reclaimed * scale / scanned);
> pressure = pressure * 100 / scale;
>
> -out:
> pr_debug("%s: %3lu (s: %lu r: %lu)\n", __func__, pressure,
> scanned, reclaimed);
>
> --
> 1.7.12.4
>
[toc] | [prev] | [next] | [standalone]
| From | zhong jiang <zhongjiang@huawei.com> |
|---|---|
| Date | 2017-06-07 07:00 +0200 |
| Message-ID | <tPBex-1PL-1@gated-at.bofh.it> |
| In reply to | #1659359 |
On 2017/6/7 11:55, Minchan Kim wrote:
> On Wed, Jun 07, 2017 at 11:08:37AM +0800, zhongjiang wrote:
>> This reverts commit e1587a4945408faa58d0485002c110eb2454740c.
>>
>> THP lru page is reclaimed , THP is split to normal page and loop again.
>> reclaimed pages should not be bigger than nr_scan. because of each
>> loop will increase nr_scan counter.
> Unfortunately, there is still underflow issue caused by slab pages as
> Vinayak reported in description of e1587a4945408 so we cannot revert.
> Please correct comment instead of removing the logic.
>
> Thanks.
we calculate the vmpressue based on the Lru page, exclude the slab pages by previous
discussion. is it not this?
Thanks
zhongjiang
>> Signed-off-by: zhongjiang <zhongjiang@huawei.com>
>> ---
>> mm/vmpressure.c | 10 +---------
>> 1 file changed, 1 insertion(+), 9 deletions(-)
>>
>> diff --git a/mm/vmpressure.c b/mm/vmpressure.c
>> index 6063581..149fdf6 100644
>> --- a/mm/vmpressure.c
>> +++ b/mm/vmpressure.c
>> @@ -112,16 +112,9 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
>> unsigned long reclaimed)
>> {
>> unsigned long scale = scanned + reclaimed;
>> - unsigned long pressure = 0;
>> + unsigned long pressure;
>>
>> /*
>> - * reclaimed can be greater than scanned in cases
>> - * like THP, where the scanned is 1 and reclaimed
>> - * could be 512
>> - */
>> - if (reclaimed >= scanned)
>> - goto out;
>> - /*
>> * We calculate the ratio (in percents) of how many pages were
>> * scanned vs. reclaimed in a given time frame (window). Note that
>> * time is in VM reclaimer's "ticks", i.e. number of pages
>> @@ -131,7 +124,6 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
>> pressure = scale - (reclaimed * scale / scanned);
>> pressure = pressure * 100 / scale;
>>
>> -out:
>> pr_debug("%s: %3lu (s: %lu r: %lu)\n", __func__, pressure,
>> scanned, reclaimed);
>>
>> --
>> 1.7.12.4
>>
> .
>
[toc] | [prev] | [next] | [standalone]
| From | vinayak menon <vinayakm.list@gmail.com> |
|---|---|
| Date | 2017-06-07 08:20 +0200 |
| Message-ID | <tPCtY-2PT-17@gated-at.bofh.it> |
| In reply to | #1659371 |
On Wed, Jun 7, 2017 at 11:42 AM, Minchan Kim <minchan@kernel.org> wrote: > On Wed, Jun 07, 2017 at 12:56:57PM +0800, zhong jiang wrote: >> On 2017/6/7 11:55, Minchan Kim wrote: >> > On Wed, Jun 07, 2017 at 11:08:37AM +0800, zhongjiang wrote: >> >> This reverts commit e1587a4945408faa58d0485002c110eb2454740c. >> >> >> >> THP lru page is reclaimed , THP is split to normal page and loop again. >> >> reclaimed pages should not be bigger than nr_scan. because of each >> >> loop will increase nr_scan counter. >> > Unfortunately, there is still underflow issue caused by slab pages as >> > Vinayak reported in description of e1587a4945408 so we cannot revert. >> > Please correct comment instead of removing the logic. >> > >> > Thanks. >> we calculate the vmpressue based on the Lru page, exclude the slab pages by previous >> discussion. is it not this? >> > > IIRC, It is not merged into mainline although mmotm has it. That's right Minchan. That patch was not mainlined.
[toc] | [prev] | [next] | [standalone]
| From | zhong jiang <zhongjiang@huawei.com> |
|---|---|
| Date | 2017-06-07 08:50 +0200 |
| Message-ID | <tPCX1-31F-21@gated-at.bofh.it> |
| In reply to | #1659396 |
On 2017/6/7 14:17, vinayak menon wrote: > On Wed, Jun 7, 2017 at 11:42 AM, Minchan Kim <minchan@kernel.org> wrote: >> On Wed, Jun 07, 2017 at 12:56:57PM +0800, zhong jiang wrote: >>> On 2017/6/7 11:55, Minchan Kim wrote: >>>> On Wed, Jun 07, 2017 at 11:08:37AM +0800, zhongjiang wrote: >>>>> This reverts commit e1587a4945408faa58d0485002c110eb2454740c. >>>>> >>>>> THP lru page is reclaimed , THP is split to normal page and loop again. >>>>> reclaimed pages should not be bigger than nr_scan. because of each >>>>> loop will increase nr_scan counter. >>>> Unfortunately, there is still underflow issue caused by slab pages as >>>> Vinayak reported in description of e1587a4945408 so we cannot revert. >>>> Please correct comment instead of removing the logic. >>>> >>>> Thanks. >>> we calculate the vmpressue based on the Lru page, exclude the slab pages by previous >>> discussion. is it not this? >>> >> IIRC, It is not merged into mainline although mmotm has it. > That's right Minchan. That patch was not mainlined. > > Hi Minchan and vinayak we should revert the patch (mm: vmpressure: fix sending wrong events on underflow), then apply the mmotm's related patch. or drop the mmotm's related patch, then corrent the comment. which one make more sense. Maybe the latter is more feasible. Suggestion ? Thanks zhongjiang
[toc] | [prev] | [next] | [standalone]
| From | Minchan Kim <minchan@kernel.org> |
|---|---|
| Date | 2017-06-07 08:20 +0200 |
| Subject | Re: [PATCH] Revert "mm: vmpressure: fix sending wrong events on underflow" |
| Message-ID | <tPCtY-2PT-19@gated-at.bofh.it> |
| In reply to | #1659371 |
On Wed, Jun 07, 2017 at 12:56:57PM +0800, zhong jiang wrote: > On 2017/6/7 11:55, Minchan Kim wrote: > > On Wed, Jun 07, 2017 at 11:08:37AM +0800, zhongjiang wrote: > >> This reverts commit e1587a4945408faa58d0485002c110eb2454740c. > >> > >> THP lru page is reclaimed , THP is split to normal page and loop again. > >> reclaimed pages should not be bigger than nr_scan. because of each > >> loop will increase nr_scan counter. > > Unfortunately, there is still underflow issue caused by slab pages as > > Vinayak reported in description of e1587a4945408 so we cannot revert. > > Please correct comment instead of removing the logic. > > > > Thanks. > we calculate the vmpressue based on the Lru page, exclude the slab pages by previous > discussion. is it not this? > IIRC, It is not merged into mainline although mmotm has it.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web