All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Brost <matthew.brost@intel.com>
To: Balbir Singh <balbirs@nvidia.com>
Cc: Francois Dugast <francois.dugast@intel.com>,
	<intel-xe@lists.freedesktop.org>,
	<dri-devel@lists.freedesktop.org>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	David Hildenbrand <david@kernel.org>,
	Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
	"Liam R . Howlett" <Liam.Howlett@oracle.com>,
	Vlastimil Babka <vbabka@suse.cz>, Mike Rapoport <rppt@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	Michal Hocko <mhocko@suse.com>, Zi Yan <ziy@nvidia.com>,
	Alistair Popple <apopple@nvidia.com>, <linux-mm@kvack.org>
Subject: Re: [PATCH v5 2/5] drm/pagemap: Unlock and put folios when possible
Date: Wed, 14 Jan 2026 18:54:00 -0800	[thread overview]
Message-ID: <aWhWyEUlp13PycO0@lstrano-desk.jf.intel.com> (raw)
In-Reply-To: <ce644d03-2257-4bfc-ae3e-3d6e578c3cad@nvidia.com>

On Thu, Jan 15, 2026 at 01:41:11PM +1100, Balbir Singh wrote:
> On 1/15/26 06:19, Francois Dugast wrote:
> > If the page is part of a folio, unlock and put the whole folio at once
> > instead of individual pages one after the other. This will reduce the
> > amount of operations once device THP are in use.
> > 
> > Cc: Andrew Morton <akpm@linux-foundation.org>
> > Cc: David Hildenbrand <david@kernel.org>
> > Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> > Cc: Liam R. Howlett <Liam.Howlett@oracle.com>
> > Cc: Vlastimil Babka <vbabka@suse.cz>
> > Cc: Mike Rapoport <rppt@kernel.org>
> > Cc: Suren Baghdasaryan <surenb@google.com>
> > Cc: Michal Hocko <mhocko@suse.com>
> > Cc: Zi Yan <ziy@nvidia.com>
> > Cc: Alistair Popple <apopple@nvidia.com>
> > Cc: Balbir Singh <balbirs@nvidia.com>
> > Cc: linux-mm@kvack.org
> > Suggested-by: Matthew Brost <matthew.brost@intel.com>
> > Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> > Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> > ---
> >  drivers/gpu/drm/drm_pagemap.c | 26 +++++++++++++++++---------
> >  1 file changed, 17 insertions(+), 9 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/drm_pagemap.c b/drivers/gpu/drm/drm_pagemap.c
> > index c497726b0147..b31090b8e97c 100644
> > --- a/drivers/gpu/drm/drm_pagemap.c
> > +++ b/drivers/gpu/drm/drm_pagemap.c
> > @@ -154,15 +154,15 @@ static void drm_pagemap_zdd_put(struct drm_pagemap_zdd *zdd)
> >  }
> >  
> >  /**
> > - * drm_pagemap_migration_unlock_put_page() - Put a migration page
> > - * @page: Pointer to the page to put
> > + * drm_pagemap_migration_unlock_put_folio() - Put a migration folio
> > + * @folio: Pointer to the folio to put
> >   *
> > - * This function unlocks and puts a page.
> > + * This function unlocks and puts a folio.
> >   */
> > -static void drm_pagemap_migration_unlock_put_page(struct page *page)
> > +static void drm_pagemap_migration_unlock_put_folio(struct folio *folio)
> >  {
> > -	unlock_page(page);
> > -	put_page(page);
> > +	folio_unlock(folio);
> > +	folio_put(folio);
> >  }
> >  
> >  /**
> > @@ -177,15 +177,23 @@ static void drm_pagemap_migration_unlock_put_pages(unsigned long npages,
> >  {
> >  	unsigned long i;
> >  
> > -	for (i = 0; i < npages; ++i) {
> > +	for (i = 0; i < npages;) {
> >  		struct page *page;
> > +		struct folio *folio;
> > +		unsigned int order = 0;
> >  
> >  		if (!migrate_pfn[i])
> > -			continue;
> > +			goto next;
> >  
> >  		page = migrate_pfn_to_page(migrate_pfn[i]);
> > -		drm_pagemap_migration_unlock_put_page(page);
> > +		folio = page_folio(page);
> > +		order = folio_order(folio);
> > +
> > +		drm_pagemap_migration_unlock_put_folio(folio);
> >  		migrate_pfn[i] = 0;
> > +
> > +next:
> > +		i += NR_PAGES(order);
> 
> Is this just a wrapper on top of folio_nr_pages()?
> 

We might not have folio order. This is a macro defined here [1].

There probably is a similar macro elsewhere in kernel that does the same
thing, I can look for that and clean this up in a follow up if I can
find one.

[1] https://elixir.bootlin.com/linux/v6.19-rc5/source/include/drm/drm_pagemap.h#L9

> >  	}
> >  }
> >  
> 
> Reviewed-by: Balbir Singh <balbirs@nvidia.com>

Thanks!

Matt

  reply	other threads:[~2026-01-15  2:54 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-14 19:19 [PATCH v5 0/5] Enable THP support in drm_pagemap Francois Dugast
2026-01-14 19:19 ` Francois Dugast
2026-01-14 19:19 ` [PATCH v5 1/5] mm/zone_device: Reinitialize large zone device private folios Francois Dugast
2026-01-14 19:19   ` Francois Dugast
2026-01-14 21:48   ` Andrew Morton
2026-01-14 21:48     ` Andrew Morton
2026-01-14 23:34     ` Matthew Brost
2026-01-14 23:34       ` Matthew Brost
2026-01-14 23:51       ` Matthew Brost
2026-01-14 23:51         ` Matthew Brost
2026-01-15  2:40         ` Andrew Morton
2026-01-15  2:40           ` Andrew Morton
2026-01-15  2:50           ` Matthew Brost
2026-01-15  2:50             ` Matthew Brost
2026-01-15  2:36   ` Balbir Singh
2026-01-15  2:36     ` Balbir Singh
2026-01-15  2:41     ` Matthew Brost
2026-01-15  2:41       ` Matthew Brost
2026-01-15  7:13       ` Alistair Popple
2026-01-15  7:13         ` Alistair Popple
2026-01-15  7:57         ` Matthew Brost
2026-01-15  7:57           ` Matthew Brost
2026-01-15  3:01   ` Andrew Morton
2026-01-15  3:01     ` Andrew Morton
2026-01-15  3:07     ` Matthew Brost
2026-01-15  3:07       ` Matthew Brost
2026-01-15  4:05       ` Matthew Brost
2026-01-15  4:05         ` Matthew Brost
2026-01-15  5:27   ` Alistair Popple
2026-01-15  5:27     ` Alistair Popple
2026-01-15  5:57     ` Matthew Brost
2026-01-15  5:57       ` Matthew Brost
2026-01-15  6:18       ` Matthew Brost
2026-01-15  6:18         ` Matthew Brost
2026-01-15  7:07         ` Alistair Popple
2026-01-15  7:07           ` Alistair Popple
2026-01-15  7:39           ` Balbir Singh
2026-01-15  7:39             ` Balbir Singh
2026-01-15  7:43           ` Matthew Brost
2026-01-15  7:43             ` Matthew Brost
2026-01-15 11:05             ` Alistair Popple
2026-01-15 11:05               ` Alistair Popple
2026-01-16  6:35               ` Matthew Brost
2026-01-16  6:35                 ` Matthew Brost
2026-01-16 16:39                 ` Rodrigo Vivi
2026-01-16 16:39                   ` Rodrigo Vivi
2026-01-16 16:13         ` Vlastimil Babka
2026-01-16 16:13           ` Vlastimil Babka
2026-01-16 16:43   ` Rodrigo Vivi
2026-01-16 16:43     ` Rodrigo Vivi
2026-01-16 18:07     ` Kuehling, Felix
2026-01-16 18:07       ` Kuehling, Felix
2026-01-14 19:19 ` [PATCH v5 2/5] drm/pagemap: Unlock and put folios when possible Francois Dugast
2026-01-15  2:41   ` Balbir Singh
2026-01-15  2:54     ` Matthew Brost [this message]
2026-01-14 19:19 ` [PATCH v5 3/5] drm/pagemap: Add helper to access zone_device_data Francois Dugast
2026-01-14 19:19 ` [PATCH v5 4/5] drm/pagemap: Correct cpages calculation for migrate_vma_setup Francois Dugast
2026-01-15  7:48   ` Balbir Singh
2026-01-14 19:19 ` [PATCH v5 5/5] drm/pagemap: Enable THP support for GPU memory migration Francois Dugast
2026-01-14 20:16 ` ✓ CI.KUnit: success for Enable THP support in drm_pagemap (rev6) Patchwork
2026-01-14 20:32 ` ✗ CI.checksparse: warning " Patchwork
2026-01-14 20:50 ` ✓ Xe.CI.BAT: success " Patchwork
2026-01-15  3:39 ` ✗ Xe.CI.Full: failure " Patchwork

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=aWhWyEUlp13PycO0@lstrano-desk.jf.intel.com \
    --to=matthew.brost@intel.com \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=apopple@nvidia.com \
    --cc=balbirs@nvidia.com \
    --cc=david@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=francois.dugast@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=linux-mm@kvack.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=mhocko@suse.com \
    --cc=rppt@kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@suse.cz \
    --cc=ziy@nvidia.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 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.