linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Zhaoyang Huang <huangzhaoyang@gmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: "zhaoyang.huang" <zhaoyang.huang@unisoc.com>,
	Matthew Wilcox <willy@infradead.org>,
	 Minchan Kim <minchan@kernel.org>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>,
	linux-mm@kvack.org,  linux-kernel@vger.kernel.org,
	ke.wang@unisoc.com
Subject: Re: [Resend PATCHv2] mm: skip CMA pages when they are not available
Date: Mon, 22 May 2023 10:06:36 +0800	[thread overview]
Message-ID: <CAGWkznEqrXZnK4j3-n-yEUeFfxjwmFE_pCKyomH9WD7CEv_xRQ@mail.gmail.com> (raw)
In-Reply-To: <20230519145839.3b5193e6accf3b13fd619a07@linux-foundation.org>

On Sat, May 20, 2023 at 5:58 AM Andrew Morton <akpm@linux-foundation.org> wrote:
>
> On Fri, 19 May 2023 16:41:41 +0800 Zhaoyang Huang <huangzhaoyang@gmail.com> wrote:
>
> > any comments?
>
> Have any of the regular CMA developers commented on a version of this?
None comments until now. IMO, it is mainly affect reclaiming process.
>
>
> I have a couple of little complaints:
>
> > diff --git a/mm/vmscan.c b/mm/vmscan.c
> > index bd6637f..19fb445 100644
> > --- a/mm/vmscan.c
> > +++ b/mm/vmscan.c
> > @@ -2225,10 +2225,16 @@ static unsigned long isolate_lru_folios(unsigned long nr_to_scan,
> >         unsigned long nr_skipped[MAX_NR_ZONES] = { 0, };
> >         unsigned long skipped = 0;
> >         unsigned long scan, total_scan, nr_pages;
> > +       bool cma_cap = true;
> > +       struct page *page;
> >         LIST_HEAD(folios_skipped);
> >
> >         total_scan = 0;
> >         scan = 0;
> > +       if ((IS_ENABLED(CONFIG_CMA)) && !current_is_kswapd()
> > +               && (gfp_migratetype(sc->gfp_mask) != MIGRATE_MOVABLE))
> > +               cma_cap = false;
> > +
>
> A code comment above this alteration would be good.  Tell the reader
> why we're doing this.
ok, will update
>
>
> >         while (scan < nr_to_scan && !list_empty(src)) {
> >                 struct list_head *move_to = src;
> >                 struct folio *folio;
> > @@ -2239,12 +2245,17 @@ static unsigned long isolate_lru_folios(unsigned long nr_to_scan,
> >                 nr_pages = folio_nr_pages(folio);
> >                 total_scan += nr_pages;
> >
> > -               if (folio_zonenum(folio) > sc->reclaim_idx) {
> > +               page = &folio->page;
> > +
> > +               if ((folio_zonenum(folio) > sc->reclaim_idx)
> > +#ifdef CONFIG_CMA
> > +                       || (get_pageblock_migratetype(page) == MIGRATE_CMA && !cma_cap)
> > +#endif
> > +               ) {
> >                         nr_skipped[folio_zonenum(folio)] += nr_pages;
> >                         move_to = &folios_skipped;
> >                         goto move;
> >                 }
>
> That's pretty ugly.  Can we use IS_ENABLED(CONFIG_CMA) here to avoid
> the ifdef?
ok
>


      reply	other threads:[~2023-05-22  2:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-15  9:38 zhaoyang.huang
2023-05-19  8:41 ` Zhaoyang Huang
2023-05-19 21:58   ` Andrew Morton
2023-05-22  2:06     ` Zhaoyang Huang [this message]

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=CAGWkznEqrXZnK4j3-n-yEUeFfxjwmFE_pCKyomH9WD7CEv_xRQ@mail.gmail.com \
    --to=huangzhaoyang@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=ke.wang@unisoc.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=minchan@kernel.org \
    --cc=willy@infradead.org \
    --cc=zhaoyang.huang@unisoc.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox