Re: [PATCH] mm/madvise: fix madvise_pageout for private file mappings

From: Pavan Kondeti
Date: Wed Nov 30 2022 - 22:01:06 EST


On Wed, Nov 30, 2022 at 03:17:39PM -0800, Andrew Morton wrote:
>
> On Wed, 9 Nov 2022 10:48:36 +0530 Pavankumar Kondeti <quic_pkondeti@xxxxxxxxxxx> wrote:
>
> > When MADV_PAGEOUT is called on a private file mapping VMA region,
> > we bail out early if the process is neither owner nor write capable
> > of the file. However, this VMA may have both private/shared clean
> > pages and private dirty pages. The opportunity of paging out the
> > private dirty pages (Anon pages) is missed. Fix this by caching
> > the file access check and use it later along with PageAnon() during
> > page walk.
> >
> > We observe ~10% improvement in zram usage, thus leaving more available
> > memory on a 4GB RAM system running Android.
> >
>
> Could we please have some reviewer input on this?
>
> Thanks.
>

Thanks Andrew for the reminder. Fyi, this patch has been included in Android
Generic Kernel Image (5.10 and 5.15 kernels) as we have seen good savings on
Android. It would make a difference on a low memory android devices.

Suren/Minchan,

Can you please do the needful?

Thanks,
Pavan