Skip to content

Commit c749d9b

Browse files
Hugh Dickinsbrauner
Hugh Dickins
authored andcommitted
iov_iter: fix copy_page_from_iter_atomic() if KMAP_LOCAL_FORCE_MAP
generic/077 on x86_32 CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP=y with highmem, on huge=always tmpfs, issues a warning and then hangs (interruptibly): WARNING: CPU: 5 PID: 3517 at mm/highmem.c:622 kunmap_local_indexed+0x62/0xc9 CPU: 5 UID: 0 PID: 3517 Comm: cp Not tainted 6.12.0-rc4 #2 ... copy_page_from_iter_atomic+0xa6/0x5ec generic_perform_write+0xf6/0x1b4 shmem_file_write_iter+0x54/0x67 Fix copy_page_from_iter_atomic() by limiting it in that case (include/linux/skbuff.h skb_frag_must_loop() does similar). But going forward, perhaps CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is too surprising, has outlived its usefulness, and should just be removed? Fixes: 908a1ad ("iov_iter: Handle compound highmem pages in copy_page_from_iter_atomic()") Signed-off-by: Hugh Dickins <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Christoph Hellwig <[email protected]> Cc: [email protected] Signed-off-by: Christian Brauner <[email protected]>
1 parent f199100 commit c749d9b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/iov_iter.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,8 @@ size_t copy_page_from_iter_atomic(struct page *page, size_t offset,
461461
size_t bytes, struct iov_iter *i)
462462
{
463463
size_t n, copied = 0;
464+
bool uses_kmap = IS_ENABLED(CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP) ||
465+
PageHighMem(page);
464466

465467
if (!page_copy_sane(page, offset, bytes))
466468
return 0;
@@ -471,7 +473,7 @@ size_t copy_page_from_iter_atomic(struct page *page, size_t offset,
471473
char *p;
472474

473475
n = bytes - copied;
474-
if (PageHighMem(page)) {
476+
if (uses_kmap) {
475477
page += offset / PAGE_SIZE;
476478
offset %= PAGE_SIZE;
477479
n = min_t(size_t, n, PAGE_SIZE - offset);
@@ -482,7 +484,7 @@ size_t copy_page_from_iter_atomic(struct page *page, size_t offset,
482484
kunmap_atomic(p);
483485
copied += n;
484486
offset += n;
485-
} while (PageHighMem(page) && copied != bytes && n > 0);
487+
} while (uses_kmap && copied != bytes && n > 0);
486488

487489
return copied;
488490
}

0 commit comments

Comments
 (0)