mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] vmcore: convert mmap_vmcore_fault() to use folios
@ 2026-09-15 23:42 Tal Zussman
  2026-09-15 23:53 ` sashiko-bot
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Tal Zussman @ 2026-09-15 23:42 UTC (permalink / raw)
  To: Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin,
	Pratyush Yadav, Dave Young
  Cc: linux-mm, linux-s390, kexec, linux-kernel, linux-fsdevel, Tal Zussman

Use a folio for the page cache page the s390 fault handler reads the
old kernel's memory into. This removes four compound_head() calls and
one of the last callers of find_or_create_page().

The vmcore mapping only has order-0 folios, so the logic is unchanged.

Compile tested for s390.

Signed-off-by: Tal Zussman <tz2294@columbia.edu>
---
This is based on the kexec-next branch of the liveupdate tree.
---
 fs/proc/vmcore.c | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c
index 44d15436439f..2dc3803aa11d 100644
--- a/fs/proc/vmcore.c
+++ b/fs/proc/vmcore.c
@@ -474,29 +474,30 @@ static vm_fault_t mmap_vmcore_fault(struct vm_fault *vmf)
 	pgoff_t index = vmf->pgoff;
 	struct iov_iter iter;
 	struct kvec kvec;
-	struct page *page;
+	struct folio *folio;
 	loff_t offset;
 	int rc;
 
-	page = find_or_create_page(mapping, index, GFP_KERNEL);
-	if (!page)
+	folio = __filemap_get_folio(mapping, index,
+			FGP_LOCK | FGP_ACCESSED | FGP_CREAT, GFP_KERNEL);
+	if (IS_ERR(folio))
 		return VM_FAULT_OOM;
-	if (!PageUptodate(page)) {
-		offset = (loff_t) index << PAGE_SHIFT;
-		kvec.iov_base = page_address(page);
-		kvec.iov_len = PAGE_SIZE;
-		iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, PAGE_SIZE);
+	if (!folio_test_uptodate(folio)) {
+		offset = folio_pos(folio);
+		kvec.iov_base = folio_address(folio);
+		kvec.iov_len = folio_size(folio);
+		iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, folio_size(folio));
 
 		rc = __read_vmcore(&iter, &offset);
 		if (rc < 0) {
-			unlock_page(page);
-			put_page(page);
+			folio_unlock(folio);
+			folio_put(folio);
 			return vmf_error(rc);
 		}
-		SetPageUptodate(page);
+		folio_mark_uptodate(folio);
 	}
-	unlock_page(page);
-	vmf->page = page;
+	folio_unlock(folio);
+	vmf->page = folio_file_page(folio, index);
 	return 0;
 #else
 	return VM_FAULT_SIGBUS;

---
base-commit: 4d17a004cfd5489f88ad0a7a151dea11a533338b
change-id: 20260907-vmcore-fault-folio-4b382eeff262

Best regards,
--  
Tal Zussman <tz2294@columbia.edu>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] vmcore: convert mmap_vmcore_fault() to use folios
  2026-09-15 23:42 [PATCH] vmcore: convert mmap_vmcore_fault() to use folios Tal Zussman
@ 2026-09-15 23:53 ` sashiko-bot
  2026-09-22 11:59 ` Pratyush Yadav
  2026-09-23  9:24 ` Mike Rapoport
  2 siblings, 0 replies; 5+ messages in thread
From: sashiko-bot @ 2026-09-15 23:53 UTC (permalink / raw)
  To: Andrew Morton, Mike Rapoport, Baoquan He, Pasha Tatashin,
	Pratyush Yadav, Tal Zussman, Dave Young
  Cc: Heiko Carstens, kexec, Vasily Gorbik, linux-fsdevel,
	linux-kernel, Christian Borntraeger, linux-s390, linux-mm,
	Alexander Gordeev

> Use a folio for the page cache page the s390 fault handler reads the
> old kernel's memory into. This removes four compound_head() calls and
> one of the last callers of find_or_create_page().
> 
> The vmcore mapping only has order-0 folios, so the logic is unchanged.
> 
> Compile tested for s390.
> 
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>

Sashiko has reviewed this patch and found no issues. It looks great!

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260915-vmcore-fault-folio-v1-1-a0cb6278670f@columbia.edu?part=1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] vmcore: convert mmap_vmcore_fault() to use folios
  2026-09-15 23:42 [PATCH] vmcore: convert mmap_vmcore_fault() to use folios Tal Zussman
  2026-09-15 23:53 ` sashiko-bot
@ 2026-09-22 11:59 ` Pratyush Yadav
  2026-09-23  9:24 ` Mike Rapoport
  2 siblings, 0 replies; 5+ messages in thread
From: Pratyush Yadav @ 2026-09-22 11:59 UTC (permalink / raw)
  To: Tal Zussman
  Cc: Andrew Morton, Baoquan He, Mike Rapoport, Pasha Tatashin,
	Pratyush Yadav, Dave Young, linux-mm, linux-s390, kexec,
	linux-kernel, linux-fsdevel

On Tue, Sep 15 2026, Tal Zussman wrote:

> Use a folio for the page cache page the s390 fault handler reads the
> old kernel's memory into. This removes four compound_head() calls and
> one of the last callers of find_or_create_page().
>
> The vmcore mapping only has order-0 folios, so the logic is unchanged.
>
> Compile tested for s390.
>
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>

Acked-by: Pratyush Yadav <pratyush@kernel.org>

[...]

-- 
Regards,
Pratyush Yadav

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] vmcore: convert mmap_vmcore_fault() to use folios
  2026-09-15 23:42 [PATCH] vmcore: convert mmap_vmcore_fault() to use folios Tal Zussman
  2026-09-15 23:53 ` sashiko-bot
  2026-09-22 11:59 ` Pratyush Yadav
@ 2026-09-23  9:24 ` Mike Rapoport
  2026-09-23 15:03   ` Heiko Carstens
  2 siblings, 1 reply; 5+ messages in thread
From: Mike Rapoport @ 2026-09-23  9:24 UTC (permalink / raw)
  To: Tal Zussman
  Cc: Andrew Morton, Baoquan He, Pasha Tatashin, Pratyush Yadav,
	Dave Young, linux-mm, linux-s390, kexec, linux-kernel,
	linux-fsdevel, Heiko Carstens, Vasily Gorbik, Alexander Gordeev

(cc s390 folks)

On Tue, Sep 15, 2026 at 07:42:15PM -0400, Tal Zussman wrote:
> Use a folio for the page cache page the s390 fault handler reads the

I tiny bit of context why is this only relevant for s390 would have been
nice :)

> old kernel's memory into. This removes four compound_head() calls and
> one of the last callers of find_or_create_page().
> 
> The vmcore mapping only has order-0 folios, so the logic is unchanged.
> 
> Compile tested for s390.
> 
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
> ---
> This is based on the kexec-next branch of the liveupdate tree.
> ---
>  fs/proc/vmcore.c | 27 ++++++++++++++-------------
>  1 file changed, 14 insertions(+), 13 deletions(-)
> 
> diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c
> index 44d15436439f..2dc3803aa11d 100644
> --- a/fs/proc/vmcore.c
> +++ b/fs/proc/vmcore.c
> @@ -474,29 +474,30 @@ static vm_fault_t mmap_vmcore_fault(struct vm_fault *vmf)
>  	pgoff_t index = vmf->pgoff;
>  	struct iov_iter iter;
>  	struct kvec kvec;
> -	struct page *page;
> +	struct folio *folio;
>  	loff_t offset;
>  	int rc;
>  
> -	page = find_or_create_page(mapping, index, GFP_KERNEL);
> -	if (!page)
> +	folio = __filemap_get_folio(mapping, index,
> +			FGP_LOCK | FGP_ACCESSED | FGP_CREAT, GFP_KERNEL);
> +	if (IS_ERR(folio))
>  		return VM_FAULT_OOM;
> -	if (!PageUptodate(page)) {
> -		offset = (loff_t) index << PAGE_SHIFT;
> -		kvec.iov_base = page_address(page);
> -		kvec.iov_len = PAGE_SIZE;
> -		iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, PAGE_SIZE);
> +	if (!folio_test_uptodate(folio)) {
> +		offset = folio_pos(folio);
> +		kvec.iov_base = folio_address(folio);
> +		kvec.iov_len = folio_size(folio);
> +		iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, folio_size(folio));
>  
>  		rc = __read_vmcore(&iter, &offset);
>  		if (rc < 0) {
> -			unlock_page(page);
> -			put_page(page);
> +			folio_unlock(folio);
> +			folio_put(folio);
>  			return vmf_error(rc);
>  		}
> -		SetPageUptodate(page);
> +		folio_mark_uptodate(folio);
>  	}
> -	unlock_page(page);
> -	vmf->page = page;
> +	folio_unlock(folio);
> +	vmf->page = folio_file_page(folio, index);
>  	return 0;
>  #else
>  	return VM_FAULT_SIGBUS;
> 
> ---
> base-commit: 4d17a004cfd5489f88ad0a7a151dea11a533338b
> change-id: 20260907-vmcore-fault-folio-4b382eeff262
> 
> Best regards,
> --  
> Tal Zussman <tz2294@columbia.edu>
> 

-- 
Sincerely yours,
Mike.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] vmcore: convert mmap_vmcore_fault() to use folios
  2026-09-23  9:24 ` Mike Rapoport
@ 2026-09-23 15:03   ` Heiko Carstens
  0 siblings, 0 replies; 5+ messages in thread
From: Heiko Carstens @ 2026-09-23 15:03 UTC (permalink / raw)
  To: Mike Rapoport
  Cc: Tal Zussman, Andrew Morton, Baoquan He, Pasha Tatashin,
	Pratyush Yadav, Dave Young, linux-mm, linux-s390, kexec,
	linux-kernel, linux-fsdevel, Vasily Gorbik, Alexander Gordeev

On Wed, Sep 23, 2026 at 12:24:43PM +0300, Mike Rapoport wrote:
> (cc s390 folks)
> 
> On Tue, Sep 15, 2026 at 07:42:15PM -0400, Tal Zussman wrote:
> > Use a folio for the page cache page the s390 fault handler reads the
> 
> I tiny bit of context why is this only relevant for s390 would have been
> nice :)

It is the ifdef CONFIG_S390 just two lines above the context diff of
the patch; but I was wondering the same and had to apply the patch and
look at the result. :)

In any case:

Acked-by: Heiko Carstens <hca@linux.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-09-23 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-15 23:42 [PATCH] vmcore: convert mmap_vmcore_fault() to use folios Tal Zussman
2026-09-15 23:53 ` sashiko-bot
2026-09-22 11:59 ` Pratyush Yadav
2026-09-23  9:24 ` Mike Rapoport
2026-09-23 15:03   ` Heiko Carstens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®