Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1720948 > unrolled thread
| Started by | Joonsoo Kim <iamjoonsoo.kim@lge.com> |
|---|---|
| First post | 2017-08-28 02:20 +0200 |
| Last post | 2017-08-31 03:50 +0200 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request Joonsoo Kim <iamjoonsoo.kim@lge.com> - 2017-08-28 02:20 +0200
Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request Michal Hocko <mhocko@kernel.org> - 2017-08-28 12:00 +0200
Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request Joonsoo Kim <iamjoonsoo.kim@lge.com> - 2017-08-29 02:50 +0200
Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request Michal Hocko <mhocko@kernel.org> - 2017-08-29 15:40 +0200
Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request Joonsoo Kim <iamjoonsoo.kim@lge.com> - 2017-08-31 03:50 +0200
| From | Joonsoo Kim <iamjoonsoo.kim@lge.com> |
|---|---|
| Date | 2017-08-28 02:20 +0200 |
| Subject | Re: [PATCH] mm/page_alloc: don't reserve ZONE_HIGHMEM for ZONE_MOVABLE request |
| Message-ID | <ujfWx-6Ko-11@gated-at.bofh.it> |
On Fri, Aug 25, 2017 at 09:38:42AM +0200, Michal Hocko wrote:
> On Fri 25-08-17 09:20:31, Joonsoo Kim wrote:
> > On Thu, Aug 24, 2017 at 11:41:58AM +0200, Vlastimil Babka wrote:
> > > On 08/24/2017 07:45 AM, js1304@gmail.com wrote:
> > > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> > > >
> > > > Freepage on ZONE_HIGHMEM doesn't work for kernel memory so it's not that
> > > > important to reserve. When ZONE_MOVABLE is used, this problem would
> > > > theorectically cause to decrease usable memory for GFP_HIGHUSER_MOVABLE
> > > > allocation request which is mainly used for page cache and anon page
> > > > allocation. So, fix it.
> > > >
> > > > And, defining sysctl_lowmem_reserve_ratio array by MAX_NR_ZONES - 1 size
> > > > makes code complex. For example, if there is highmem system, following
> > > > reserve ratio is activated for *NORMAL ZONE* which would be easyily
> > > > misleading people.
> > > >
> > > > #ifdef CONFIG_HIGHMEM
> > > > 32
> > > > #endif
> > > >
> > > > This patch also fix this situation by defining sysctl_lowmem_reserve_ratio
> > > > array by MAX_NR_ZONES and place "#ifdef" to right place.
> > > >
> > > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> > > > Acked-by: Vlastimil Babka <vbabka@suse.cz>
> > >
> > > Looks like I did that almost year ago, so definitely had to refresh my
> > > memory now :)
> > >
> > > Anyway now I looked more thoroughly and noticed that this change leaks
> > > into the reported sysctl. On a 64bit system with ZONE_MOVABLE:
> > >
> > > before the patch:
> > > vm.lowmem_reserve_ratio = 256 256 32
> > >
> > > after the patch:
> > > vm.lowmem_reserve_ratio = 256 256 32 2147483647
> > >
> > > So if we indeed remove HIGHMEM from protection (c.f. Michal's mail), we
> > > should do that differently than with the INT_MAX trick, IMHO.
> >
> > Hmm, this is already pointed by Minchan and I have answered that.
> >
> > lkml.kernel.org/r/<20170421013243.GA13966@js1304-desktop>
> >
> > If you have a better idea, please let me know.
>
> Why don't we just use 0. In fact we are reserving 0 pages... Using
> INT_MAX is just wrong.
The number of reserved pages is calculated by "managed_pages /
ratio". Using INT_MAX, net result would be 0.
There is a logic converting ratio 0 to ratio 1.
if (sysctl_lowmem_reserve_ratio[idx] < 1)
sysctl_lowmem_reserve_ratio[idx] = 1
If I use 0 to represent 0 reserved page, there would be a user
who is affected by this change. So, I don't use 0 for this patch.
Thanks.
[toc] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-08-28 12:00 +0200 |
| Message-ID | <ujoZQ-3ZF-7@gated-at.bofh.it> |
| In reply to | #1720948 |
On Mon 28-08-17 09:15:52, Joonsoo Kim wrote: > On Fri, Aug 25, 2017 at 09:38:42AM +0200, Michal Hocko wrote: > > On Fri 25-08-17 09:20:31, Joonsoo Kim wrote: > > > On Thu, Aug 24, 2017 at 11:41:58AM +0200, Vlastimil Babka wrote: > > > > On 08/24/2017 07:45 AM, js1304@gmail.com wrote: > > > > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > > > > > > > > Freepage on ZONE_HIGHMEM doesn't work for kernel memory so it's not that > > > > > important to reserve. When ZONE_MOVABLE is used, this problem would > > > > > theorectically cause to decrease usable memory for GFP_HIGHUSER_MOVABLE > > > > > allocation request which is mainly used for page cache and anon page > > > > > allocation. So, fix it. > > > > > > > > > > And, defining sysctl_lowmem_reserve_ratio array by MAX_NR_ZONES - 1 size > > > > > makes code complex. For example, if there is highmem system, following > > > > > reserve ratio is activated for *NORMAL ZONE* which would be easyily > > > > > misleading people. > > > > > > > > > > #ifdef CONFIG_HIGHMEM > > > > > 32 > > > > > #endif > > > > > > > > > > This patch also fix this situation by defining sysctl_lowmem_reserve_ratio > > > > > array by MAX_NR_ZONES and place "#ifdef" to right place. > > > > > > > > > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> > > > > > Acked-by: Vlastimil Babka <vbabka@suse.cz> > > > > > > > > Looks like I did that almost year ago, so definitely had to refresh my > > > > memory now :) > > > > > > > > Anyway now I looked more thoroughly and noticed that this change leaks > > > > into the reported sysctl. On a 64bit system with ZONE_MOVABLE: > > > > > > > > before the patch: > > > > vm.lowmem_reserve_ratio = 256 256 32 > > > > > > > > after the patch: > > > > vm.lowmem_reserve_ratio = 256 256 32 2147483647 > > > > > > > > So if we indeed remove HIGHMEM from protection (c.f. Michal's mail), we > > > > should do that differently than with the INT_MAX trick, IMHO. > > > > > > Hmm, this is already pointed by Minchan and I have answered that. > > > > > > lkml.kernel.org/r/<20170421013243.GA13966@js1304-desktop> > > > > > > If you have a better idea, please let me know. > > > > Why don't we just use 0. In fact we are reserving 0 pages... Using > > INT_MAX is just wrong. > > The number of reserved pages is calculated by "managed_pages / > ratio". Using INT_MAX, net result would be 0. Why cannot we simply special case 0? > There is a logic converting ratio 0 to ratio 1. > > if (sysctl_lowmem_reserve_ratio[idx] < 1) > sysctl_lowmem_reserve_ratio[idx] = 1 This code just tries to prevent from division by 0 but I am wondering we should simply set lowmem_reserve to 0 in that case. > If I use 0 to represent 0 reserved page, there would be a user > who is affected by this change. So, I don't use 0 for this patch. I am sorry but I do not understand? Could you be more specific please? -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | Joonsoo Kim <iamjoonsoo.kim@lge.com> |
|---|---|
| Date | 2017-08-29 02:50 +0200 |
| Message-ID | <ujCT8-42x-7@gated-at.bofh.it> |
| In reply to | #1721455 |
On Mon, Aug 28, 2017 at 11:56:16AM +0200, Michal Hocko wrote: > On Mon 28-08-17 09:15:52, Joonsoo Kim wrote: > > On Fri, Aug 25, 2017 at 09:38:42AM +0200, Michal Hocko wrote: > > > On Fri 25-08-17 09:20:31, Joonsoo Kim wrote: > > > > On Thu, Aug 24, 2017 at 11:41:58AM +0200, Vlastimil Babka wrote: > > > > > On 08/24/2017 07:45 AM, js1304@gmail.com wrote: > > > > > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > > > > > > > > > > Freepage on ZONE_HIGHMEM doesn't work for kernel memory so it's not that > > > > > > important to reserve. When ZONE_MOVABLE is used, this problem would > > > > > > theorectically cause to decrease usable memory for GFP_HIGHUSER_MOVABLE > > > > > > allocation request which is mainly used for page cache and anon page > > > > > > allocation. So, fix it. > > > > > > > > > > > > And, defining sysctl_lowmem_reserve_ratio array by MAX_NR_ZONES - 1 size > > > > > > makes code complex. For example, if there is highmem system, following > > > > > > reserve ratio is activated for *NORMAL ZONE* which would be easyily > > > > > > misleading people. > > > > > > > > > > > > #ifdef CONFIG_HIGHMEM > > > > > > 32 > > > > > > #endif > > > > > > > > > > > > This patch also fix this situation by defining sysctl_lowmem_reserve_ratio > > > > > > array by MAX_NR_ZONES and place "#ifdef" to right place. > > > > > > > > > > > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> > > > > > > Acked-by: Vlastimil Babka <vbabka@suse.cz> > > > > > > > > > > Looks like I did that almost year ago, so definitely had to refresh my > > > > > memory now :) > > > > > > > > > > Anyway now I looked more thoroughly and noticed that this change leaks > > > > > into the reported sysctl. On a 64bit system with ZONE_MOVABLE: > > > > > > > > > > before the patch: > > > > > vm.lowmem_reserve_ratio = 256 256 32 > > > > > > > > > > after the patch: > > > > > vm.lowmem_reserve_ratio = 256 256 32 2147483647 > > > > > > > > > > So if we indeed remove HIGHMEM from protection (c.f. Michal's mail), we > > > > > should do that differently than with the INT_MAX trick, IMHO. > > > > > > > > Hmm, this is already pointed by Minchan and I have answered that. > > > > > > > > lkml.kernel.org/r/<20170421013243.GA13966@js1304-desktop> > > > > > > > > If you have a better idea, please let me know. > > > > > > Why don't we just use 0. In fact we are reserving 0 pages... Using > > > INT_MAX is just wrong. > > > > The number of reserved pages is calculated by "managed_pages / > > ratio". Using INT_MAX, net result would be 0. > > Why cannot we simply special case 0? > > > There is a logic converting ratio 0 to ratio 1. > > > > if (sysctl_lowmem_reserve_ratio[idx] < 1) > > sysctl_lowmem_reserve_ratio[idx] = 1 > > This code just tries to prevent from division by 0 but I am wondering > we should simply set lowmem_reserve to 0 in that case. > > > If I use 0 to represent 0 reserved page, there would be a user > > who is affected by this change. So, I don't use 0 for this patch. > > I am sorry but I do not understand? Could you be more specific please? If there is a user that manually set sysctl_lowmem_reserve_ratio and he/she uses '0' to set ratio to '1', your suggestion making '0' as a special value changes his/her system behaviour. I'm afraid this case. However, if you and Vlastimil agree with this making '0' as a special value, I will go this way. Thanks.
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-08-29 15:40 +0200 |
| Message-ID | <ujOUi-3dt-21@gated-at.bofh.it> |
| In reply to | #1722088 |
On Tue 29-08-17 09:45:47, Joonsoo Kim wrote: > On Mon, Aug 28, 2017 at 11:56:16AM +0200, Michal Hocko wrote: > > On Mon 28-08-17 09:15:52, Joonsoo Kim wrote: > > > On Fri, Aug 25, 2017 at 09:38:42AM +0200, Michal Hocko wrote: > > > > On Fri 25-08-17 09:20:31, Joonsoo Kim wrote: > > > > > On Thu, Aug 24, 2017 at 11:41:58AM +0200, Vlastimil Babka wrote: > > > > > > On 08/24/2017 07:45 AM, js1304@gmail.com wrote: > > > > > > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > > > > > > > > > > > > Freepage on ZONE_HIGHMEM doesn't work for kernel memory so it's not that > > > > > > > important to reserve. When ZONE_MOVABLE is used, this problem would > > > > > > > theorectically cause to decrease usable memory for GFP_HIGHUSER_MOVABLE > > > > > > > allocation request which is mainly used for page cache and anon page > > > > > > > allocation. So, fix it. > > > > > > > > > > > > > > And, defining sysctl_lowmem_reserve_ratio array by MAX_NR_ZONES - 1 size > > > > > > > makes code complex. For example, if there is highmem system, following > > > > > > > reserve ratio is activated for *NORMAL ZONE* which would be easyily > > > > > > > misleading people. > > > > > > > > > > > > > > #ifdef CONFIG_HIGHMEM > > > > > > > 32 > > > > > > > #endif > > > > > > > > > > > > > > This patch also fix this situation by defining sysctl_lowmem_reserve_ratio > > > > > > > array by MAX_NR_ZONES and place "#ifdef" to right place. > > > > > > > > > > > > > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> > > > > > > > Acked-by: Vlastimil Babka <vbabka@suse.cz> > > > > > > > > > > > > Looks like I did that almost year ago, so definitely had to refresh my > > > > > > memory now :) > > > > > > > > > > > > Anyway now I looked more thoroughly and noticed that this change leaks > > > > > > into the reported sysctl. On a 64bit system with ZONE_MOVABLE: > > > > > > > > > > > > before the patch: > > > > > > vm.lowmem_reserve_ratio = 256 256 32 > > > > > > > > > > > > after the patch: > > > > > > vm.lowmem_reserve_ratio = 256 256 32 2147483647 > > > > > > > > > > > > So if we indeed remove HIGHMEM from protection (c.f. Michal's mail), we > > > > > > should do that differently than with the INT_MAX trick, IMHO. > > > > > > > > > > Hmm, this is already pointed by Minchan and I have answered that. > > > > > > > > > > lkml.kernel.org/r/<20170421013243.GA13966@js1304-desktop> > > > > > > > > > > If you have a better idea, please let me know. > > > > > > > > Why don't we just use 0. In fact we are reserving 0 pages... Using > > > > INT_MAX is just wrong. > > > > > > The number of reserved pages is calculated by "managed_pages / > > > ratio". Using INT_MAX, net result would be 0. > > > > Why cannot we simply special case 0? > > > > > There is a logic converting ratio 0 to ratio 1. > > > > > > if (sysctl_lowmem_reserve_ratio[idx] < 1) > > > sysctl_lowmem_reserve_ratio[idx] = 1 > > > > This code just tries to prevent from division by 0 but I am wondering > > we should simply set lowmem_reserve to 0 in that case. > > > > > If I use 0 to represent 0 reserved page, there would be a user > > > who is affected by this change. So, I don't use 0 for this patch. > > > > I am sorry but I do not understand? Could you be more specific please? > > If there is a user that manually set sysctl_lowmem_reserve_ratio and > he/she uses '0' to set ratio to '1', your suggestion making '0' as > a special value changes his/her system behaviour. I'm afraid this > case. Documentation (Documentation/sysctl/vm.txt) explicitly states that 1 is minimum. So I wouldn't afraid all that much. And you can actually printk_once if 0 is set and explain that this disables memory reserve for the particular zone altogether. > However, if you and Vlastimil agree with this making '0' as a special > value, I will go this way. I do agree that INT_MAX is just too ugly. -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | Joonsoo Kim <iamjoonsoo.kim@lge.com> |
|---|---|
| Date | 2017-08-31 03:50 +0200 |
| Message-ID | <ukmMi-7wA-5@gated-at.bofh.it> |
| In reply to | #1722497 |
On Tue, Aug 29, 2017 at 03:39:45PM +0200, Michal Hocko wrote: > On Tue 29-08-17 09:45:47, Joonsoo Kim wrote: > > On Mon, Aug 28, 2017 at 11:56:16AM +0200, Michal Hocko wrote: > > > On Mon 28-08-17 09:15:52, Joonsoo Kim wrote: > > > > On Fri, Aug 25, 2017 at 09:38:42AM +0200, Michal Hocko wrote: > > > > > On Fri 25-08-17 09:20:31, Joonsoo Kim wrote: > > > > > > On Thu, Aug 24, 2017 at 11:41:58AM +0200, Vlastimil Babka wrote: > > > > > > > On 08/24/2017 07:45 AM, js1304@gmail.com wrote: > > > > > > > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > > > > > > > > > > > > > > Freepage on ZONE_HIGHMEM doesn't work for kernel memory so it's not that > > > > > > > > important to reserve. When ZONE_MOVABLE is used, this problem would > > > > > > > > theorectically cause to decrease usable memory for GFP_HIGHUSER_MOVABLE > > > > > > > > allocation request which is mainly used for page cache and anon page > > > > > > > > allocation. So, fix it. > > > > > > > > > > > > > > > > And, defining sysctl_lowmem_reserve_ratio array by MAX_NR_ZONES - 1 size > > > > > > > > makes code complex. For example, if there is highmem system, following > > > > > > > > reserve ratio is activated for *NORMAL ZONE* which would be easyily > > > > > > > > misleading people. > > > > > > > > > > > > > > > > #ifdef CONFIG_HIGHMEM > > > > > > > > 32 > > > > > > > > #endif > > > > > > > > > > > > > > > > This patch also fix this situation by defining sysctl_lowmem_reserve_ratio > > > > > > > > array by MAX_NR_ZONES and place "#ifdef" to right place. > > > > > > > > > > > > > > > > Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> > > > > > > > > Acked-by: Vlastimil Babka <vbabka@suse.cz> > > > > > > > > > > > > > > Looks like I did that almost year ago, so definitely had to refresh my > > > > > > > memory now :) > > > > > > > > > > > > > > Anyway now I looked more thoroughly and noticed that this change leaks > > > > > > > into the reported sysctl. On a 64bit system with ZONE_MOVABLE: > > > > > > > > > > > > > > before the patch: > > > > > > > vm.lowmem_reserve_ratio = 256 256 32 > > > > > > > > > > > > > > after the patch: > > > > > > > vm.lowmem_reserve_ratio = 256 256 32 2147483647 > > > > > > > > > > > > > > So if we indeed remove HIGHMEM from protection (c.f. Michal's mail), we > > > > > > > should do that differently than with the INT_MAX trick, IMHO. > > > > > > > > > > > > Hmm, this is already pointed by Minchan and I have answered that. > > > > > > > > > > > > lkml.kernel.org/r/<20170421013243.GA13966@js1304-desktop> > > > > > > > > > > > > If you have a better idea, please let me know. > > > > > > > > > > Why don't we just use 0. In fact we are reserving 0 pages... Using > > > > > INT_MAX is just wrong. > > > > > > > > The number of reserved pages is calculated by "managed_pages / > > > > ratio". Using INT_MAX, net result would be 0. > > > > > > Why cannot we simply special case 0? > > > > > > > There is a logic converting ratio 0 to ratio 1. > > > > > > > > if (sysctl_lowmem_reserve_ratio[idx] < 1) > > > > sysctl_lowmem_reserve_ratio[idx] = 1 > > > > > > This code just tries to prevent from division by 0 but I am wondering > > > we should simply set lowmem_reserve to 0 in that case. > > > > > > > If I use 0 to represent 0 reserved page, there would be a user > > > > who is affected by this change. So, I don't use 0 for this patch. > > > > > > I am sorry but I do not understand? Could you be more specific please? > > > > If there is a user that manually set sysctl_lowmem_reserve_ratio and > > he/she uses '0' to set ratio to '1', your suggestion making '0' as > > a special value changes his/her system behaviour. I'm afraid this > > case. > > Documentation (Documentation/sysctl/vm.txt) explicitly states that 1 > is minimum. So I wouldn't afraid all that much. And you can actually > printk_once if 0 is set and explain that this disables memory reserve > for the particular zone altogether. Great! If documentation says that, we can freely use the value, zero. I will do it as this way. Thanks.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web