All of lore.kernel.org
 help / color / mirror / Atom feed
* [v1 resend 00/12] THP support for zone device page migration
@ 2025-07-03 23:34 Balbir Singh
  2025-07-03 23:35 ` [v1 resend 01/12] mm/zone_device: support large zone device private folios Balbir Singh
                   ` (14 more replies)
  0 siblings, 15 replies; 100+ messages in thread
From: Balbir Singh @ 2025-07-03 23:34 UTC (permalink / raw)
  To: linux-mm
  Cc: akpm, linux-kernel, Balbir Singh, Karol Herbst, Lyude Paul,
	Danilo Krummrich, David Airlie, Simona Vetter,
	Jérôme Glisse, Shuah Khan, David Hildenbrand,
	Barry Song, Baolin Wang, Ryan Roberts, Matthew Wilcox, Peter Xu,
	Zi Yan, Kefeng Wang, Jane Chu, Alistair Popple, Donet Tom

This patch series adds support for THP migration of zone device pages.
To do so, the patches implement support for folio zone device pages
by adding support for setting up larger order pages.

These patches build on the earlier posts by Ralph Campbell [1]

Two new flags are added in vma_migration to select and mark compound pages.
migrate_vma_setup(), migrate_vma_pages() and migrate_vma_finalize()
support migration of these pages when MIGRATE_VMA_SELECT_COMPOUND
is passed in as arguments.

The series also adds zone device awareness to (m)THP pages along
with fault handling of large zone device private pages. page vma walk
and the rmap code is also zone device aware. Support has also been
added for folios that might need to be split in the middle
of migration (when the src and dst do not agree on
MIGRATE_PFN_COMPOUND), that occurs when src side of the migration can
migrate large pages, but the destination has not been able to allocate
large pages. The code supported and used folio_split() when migrating
THP pages, this is used when MIGRATE_VMA_SELECT_COMPOUND is not passed
as an argument to migrate_vma_setup().

The test infrastructure lib/test_hmm.c has been enhanced to support THP
migration. A new ioctl to emulate failure of large page allocations has
been added to test the folio split code path. hmm-tests.c has new test
cases for huge page migration and to test the folio split path. A new
throughput test has been added as well.

The nouveau dmem code has been enhanced to use the new THP migration
capability.

Feedback from the RFC [2]:

It was advised that prep_compound_page() not be exposed just for the purposes
of testing (test driver lib/test_hmm.c). Work arounds of copy and split the
folios did not work due to lock order dependency in the callback for
split folio.

mTHP support:

The patches hard code, HPAGE_PMD_NR in a few places, but the code has
been kept generic to support various order sizes. With additional
refactoring of the code support of different order sizes should be
possible.

The future plan is to post enhancements to support mTHP with a rough
design as follows:

1. Add the notion of allowable thp orders to the HMM based test driver
2. For non PMD based THP paths in migrate_device.c, check to see if
   a suitable order is found and supported by the driver
3. Iterate across orders to check the highest supported order for migration
4. Migrate and finalize

The mTHP patches can be built on top of this series, the key design elements
that need to be worked out are infrastructure and driver support for multiple
ordered pages and their migration.

References:
[1] https://lore.kernel.org/linux-mm/20201106005147.20113-1-rcampbell@nvidia.com/
[2] https://lore.kernel.org/linux-mm/20250306044239.3874247-3-balbirs@nvidia.com/T/

These patches are built on top of mm-unstable

Cc: Karol Herbst <kherbst@redhat.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: Danilo Krummrich <dakr@kernel.org>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: "Jérôme Glisse" <jglisse@redhat.com>
Cc: Shuah Khan <shuah@kernel.org>
Cc: David Hildenbrand <david@redhat.com>
Cc: Barry Song <baohua@kernel.org>
Cc: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Peter Xu <peterx@redhat.com>
Cc: Zi Yan <ziy@nvidia.com>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Jane Chu <jane.chu@oracle.com>
Cc: Alistair Popple <apopple@nvidia.com>
Cc: Donet Tom <donettom@linux.ibm.com>

Changelog v1:
- Changes from RFC [2], include support for handling fault_folio and using
  trylock in the fault path
- A new test case has been added to measure the throughput improvement
- General refactoring of code to keep up with the changes in mm
- New split folio callback when the entire split is complete/done. The
  callback is used to know when the head order needs to be reset.

Testing:
- Testing was done with ZONE_DEVICE private pages on an x86 VM
- Throughput showed upto 5x improvement with THP migration, system to device
  migration is slower due to the mirroring of data (see buffer->mirror)


Balbir Singh (12):
  mm/zone_device: support large zone device private folios
  mm/migrate_device: flags for selecting device private THP pages
  mm/thp: zone_device awareness in THP handling code
  mm/migrate_device: THP migration of zone device pages
  mm/memory/fault: add support for zone device THP fault handling
  lib/test_hmm: test cases and support for zone device private THP
  mm/memremap: add folio_split support
  mm/thp: add split during migration support
  lib/test_hmm: add test case for split pages
  selftests/mm/hmm-tests: new tests for zone device THP migration
  gpu/drm/nouveau: add THP migration support
  selftests/mm/hmm-tests: new throughput tests including THP

 drivers/gpu/drm/nouveau/nouveau_dmem.c | 246 +++++++---
 drivers/gpu/drm/nouveau/nouveau_svm.c  |   6 +-
 drivers/gpu/drm/nouveau/nouveau_svm.h  |   3 +-
 include/linux/huge_mm.h                |  18 +-
 include/linux/memremap.h               |  29 +-
 include/linux/migrate.h                |   2 +
 include/linux/mm.h                     |   1 +
 lib/test_hmm.c                         | 428 +++++++++++++----
 lib/test_hmm_uapi.h                    |   3 +
 mm/huge_memory.c                       | 261 ++++++++---
 mm/memory.c                            |   6 +-
 mm/memremap.c                          |  50 +-
 mm/migrate.c                           |   2 +
 mm/migrate_device.c                    | 488 +++++++++++++++++---
 mm/page_alloc.c                        |   1 +
 mm/page_vma_mapped.c                   |  10 +
 mm/pgtable-generic.c                   |   6 +
 mm/rmap.c                              |  19 +-
 tools/testing/selftests/mm/hmm-tests.c | 607 ++++++++++++++++++++++++-
 19 files changed, 1874 insertions(+), 312 deletions(-)

-- 
2.49.0



^ permalink raw reply	[flat|nested] 100+ messages in thread
* Re: [v1 resend 04/12] mm/migrate_device: THP migration of zone device pages
@ 2025-07-04 18:11 kernel test robot
  0 siblings, 0 replies; 100+ messages in thread
From: kernel test robot @ 2025-07-04 18:11 UTC (permalink / raw)
  To: oe-kbuild; +Cc: lkp

:::::: 
:::::: Manual check reason: "__compiletime_assert_NNN"
:::::: 

BCC: lkp@intel.com
CC: llvm@lists.linux.dev
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20250703233511.2028395-5-balbirs@nvidia.com>
References: <20250703233511.2028395-5-balbirs@nvidia.com>
TO: Balbir Singh <balbirs@nvidia.com>
TO: linux-mm@kvack.org
CC: akpm@linux-foundation.org
CC: linux-kernel@vger.kernel.org
CC: Balbir Singh <balbirs@nvidia.com>
CC: Karol Herbst <kherbst@redhat.com>
CC: Lyude Paul <lyude@redhat.com>
CC: Danilo Krummrich <dakr@kernel.org>
CC: David Airlie <airlied@gmail.com>
CC: Simona Vetter <simona@ffwll.ch>
CC: "Jérôme Glisse" <jglisse@redhat.com>
CC: Shuah Khan <skhan@linuxfoundation.org>
CC: David Hildenbrand <david@redhat.com>
CC: Barry Song <baohua@kernel.org>
CC: Baolin Wang <baolin.wang@linux.alibaba.com>
CC: Ryan Roberts <ryan.roberts@arm.com>
CC: Matthew Wilcox <willy@infradead.org>
CC: Peter Xu <peterx@redhat.com>
CC: Zi Yan <ziy@nvidia.com>
CC: Kefeng Wang <wangkefeng.wang@huawei.com>
CC: Jane Chu <jane.chu@oracle.com>
CC: Alistair Popple <apopple@nvidia.com>
CC: Donet Tom <donettom@linux.ibm.com>

Hi Balbir,

kernel test robot noticed the following build errors:

[auto build test ERROR on akpm-mm/mm-everything]
[also build test ERROR on next-20250704]
[cannot apply to akpm-mm/mm-nonmm-unstable shuah-kselftest/next shuah-kselftest/fixes linus/master v6.16-rc4]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Balbir-Singh/mm-zone_device-support-large-zone-device-private-folios/20250704-073807
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/20250703233511.2028395-5-balbirs%40nvidia.com
patch subject: [v1 resend 04/12] mm/migrate_device: THP migration of zone device pages
:::::: branch date: 18 hours ago
:::::: commit date: 18 hours ago
config: arm64-randconfig-002-20250704 (https://download.01.org/0day-ci/archive/20250705/202507050121.dLfdMtAI-lkp@intel.com/config)
compiler: clang version 21.0.0git (https://github.com/llvm/llvm-project 61529d9e36fa86782a2458e6bdeedf7f376ef4b5)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250705/202507050121.dLfdMtAI-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/r/202507050121.dLfdMtAI-lkp@intel.com/

All errors (new ones prefixed by >>):

>> mm/migrate_device.c:1015:10: error: call to '__compiletime_assert_715' declared with 'error' attribute: BUILD_BUG failed
    1015 |                                 nr = HPAGE_PMD_NR;
         |                                      ^
   include/linux/huge_mm.h:115:26: note: expanded from macro 'HPAGE_PMD_NR'
     115 | #define HPAGE_PMD_NR (1<<HPAGE_PMD_ORDER)
         |                          ^
   include/linux/huge_mm.h:114:26: note: expanded from macro 'HPAGE_PMD_ORDER'
     114 | #define HPAGE_PMD_ORDER (HPAGE_PMD_SHIFT-PAGE_SHIFT)
         |                          ^
   include/linux/huge_mm.h:110:28: note: expanded from macro 'HPAGE_PMD_SHIFT'
     110 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; })
         |                            ^
   note: (skipping 3 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
   include/linux/compiler_types.h:556:2: note: expanded from macro '_compiletime_assert'
     556 |         __compiletime_assert(condition, msg, prefix, suffix)
         |         ^
   include/linux/compiler_types.h:549:4: note: expanded from macro '__compiletime_assert'
     549 |                         prefix ## suffix();                             \
         |                         ^
   <scratch space>:115:1: note: expanded from here
     115 | __compiletime_assert_715
         | ^
   1 error generated.


vim +1015 mm/migrate_device.c

76cbbead253ddc Christoph Hellwig       2022-02-16   968  
e778406b40dbb1 Alistair Popple         2022-09-28   969  static void __migrate_device_pages(unsigned long *src_pfns,
241f6885965683 Alistair Popple         2022-09-28   970  				unsigned long *dst_pfns, unsigned long npages,
241f6885965683 Alistair Popple         2022-09-28   971  				struct migrate_vma *migrate)
76cbbead253ddc Christoph Hellwig       2022-02-16   972  {
76cbbead253ddc Christoph Hellwig       2022-02-16   973  	struct mmu_notifier_range range;
241f6885965683 Alistair Popple         2022-09-28   974  	unsigned long i;
76cbbead253ddc Christoph Hellwig       2022-02-16   975  	bool notified = false;
76cbbead253ddc Christoph Hellwig       2022-02-16   976  
7a40e7ad868d8f Balbir Singh            2025-07-04   977  	for (i = 0; i < npages; ) {
241f6885965683 Alistair Popple         2022-09-28   978  		struct page *newpage = migrate_pfn_to_page(dst_pfns[i]);
241f6885965683 Alistair Popple         2022-09-28   979  		struct page *page = migrate_pfn_to_page(src_pfns[i]);
76cbbead253ddc Christoph Hellwig       2022-02-16   980  		struct address_space *mapping;
6aaaef5b6fe3f5 Kefeng Wang             2024-05-24   981  		struct folio *newfolio, *folio;
15b0c79cfadad6 Kefeng Wang             2024-05-24   982  		int r, extra_cnt = 0;
7a40e7ad868d8f Balbir Singh            2025-07-04   983  		unsigned long nr = 1;
76cbbead253ddc Christoph Hellwig       2022-02-16   984  
76cbbead253ddc Christoph Hellwig       2022-02-16   985  		if (!newpage) {
241f6885965683 Alistair Popple         2022-09-28   986  			src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04   987  			goto next;
76cbbead253ddc Christoph Hellwig       2022-02-16   988  		}
76cbbead253ddc Christoph Hellwig       2022-02-16   989  
76cbbead253ddc Christoph Hellwig       2022-02-16   990  		if (!page) {
241f6885965683 Alistair Popple         2022-09-28   991  			unsigned long addr;
241f6885965683 Alistair Popple         2022-09-28   992  
e778406b40dbb1 Alistair Popple         2022-09-28   993  			if (!(src_pfns[i] & MIGRATE_PFN_MIGRATE))
7a40e7ad868d8f Balbir Singh            2025-07-04   994  				goto next;
e778406b40dbb1 Alistair Popple         2022-09-28   995  
b05a79d4377f6d Alistair Popple         2022-07-15   996  			/*
b05a79d4377f6d Alistair Popple         2022-07-15   997  			 * The only time there is no vma is when called from
5c8525a37b78dd Kefeng Wang             2024-08-26   998  			 * migrate_device_coherent_folio(). However this isn't
b05a79d4377f6d Alistair Popple         2022-07-15   999  			 * called if the page could not be unmapped.
b05a79d4377f6d Alistair Popple         2022-07-15  1000  			 */
241f6885965683 Alistair Popple         2022-09-28  1001  			VM_BUG_ON(!migrate);
241f6885965683 Alistair Popple         2022-09-28  1002  			addr = migrate->start + i*PAGE_SIZE;
76cbbead253ddc Christoph Hellwig       2022-02-16  1003  			if (!notified) {
76cbbead253ddc Christoph Hellwig       2022-02-16  1004  				notified = true;
76cbbead253ddc Christoph Hellwig       2022-02-16  1005  
76cbbead253ddc Christoph Hellwig       2022-02-16  1006  				mmu_notifier_range_init_owner(&range,
7d4a8be0c4b2b7 Alistair Popple         2023-01-10  1007  					MMU_NOTIFY_MIGRATE, 0,
76cbbead253ddc Christoph Hellwig       2022-02-16  1008  					migrate->vma->vm_mm, addr, migrate->end,
76cbbead253ddc Christoph Hellwig       2022-02-16  1009  					migrate->pgmap_owner);
76cbbead253ddc Christoph Hellwig       2022-02-16  1010  				mmu_notifier_invalidate_range_start(&range);
76cbbead253ddc Christoph Hellwig       2022-02-16  1011  			}
7a40e7ad868d8f Balbir Singh            2025-07-04  1012  
7a40e7ad868d8f Balbir Singh            2025-07-04  1013  			if ((src_pfns[i] & MIGRATE_PFN_COMPOUND) &&
7a40e7ad868d8f Balbir Singh            2025-07-04  1014  				(!(dst_pfns[i] & MIGRATE_PFN_COMPOUND))) {
7a40e7ad868d8f Balbir Singh            2025-07-04 @1015  				nr = HPAGE_PMD_NR;
7a40e7ad868d8f Balbir Singh            2025-07-04  1016  				src_pfns[i] &= ~MIGRATE_PFN_COMPOUND;
7a40e7ad868d8f Balbir Singh            2025-07-04  1017  				src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04  1018  				goto next;
7a40e7ad868d8f Balbir Singh            2025-07-04  1019  			}
7a40e7ad868d8f Balbir Singh            2025-07-04  1020  
7a40e7ad868d8f Balbir Singh            2025-07-04  1021  			migrate_vma_insert_page(migrate, addr, &dst_pfns[i],
241f6885965683 Alistair Popple         2022-09-28  1022  						&src_pfns[i]);
7a40e7ad868d8f Balbir Singh            2025-07-04  1023  			goto next;
76cbbead253ddc Christoph Hellwig       2022-02-16  1024  		}
76cbbead253ddc Christoph Hellwig       2022-02-16  1025  
6aaaef5b6fe3f5 Kefeng Wang             2024-05-24  1026  		newfolio = page_folio(newpage);
e18a9faf06c240 Matthew Wilcox (Oracle  2024-04-23  1027) 		folio = page_folio(page);
e18a9faf06c240 Matthew Wilcox (Oracle  2024-04-23  1028) 		mapping = folio_mapping(folio);
76cbbead253ddc Christoph Hellwig       2022-02-16  1029  
7a40e7ad868d8f Balbir Singh            2025-07-04  1030  		/*
7a40e7ad868d8f Balbir Singh            2025-07-04  1031  		 * If THP migration is enabled, check if both src and dst
7a40e7ad868d8f Balbir Singh            2025-07-04  1032  		 * can migrate large pages
7a40e7ad868d8f Balbir Singh            2025-07-04  1033  		 */
7a40e7ad868d8f Balbir Singh            2025-07-04  1034  		if (thp_migration_supported()) {
7a40e7ad868d8f Balbir Singh            2025-07-04  1035  			if ((src_pfns[i] & MIGRATE_PFN_MIGRATE) &&
7a40e7ad868d8f Balbir Singh            2025-07-04  1036  				(src_pfns[i] & MIGRATE_PFN_COMPOUND) &&
7a40e7ad868d8f Balbir Singh            2025-07-04  1037  				!(dst_pfns[i] & MIGRATE_PFN_COMPOUND)) {
7a40e7ad868d8f Balbir Singh            2025-07-04  1038  
7a40e7ad868d8f Balbir Singh            2025-07-04  1039  				if (!migrate) {
7a40e7ad868d8f Balbir Singh            2025-07-04  1040  					src_pfns[i] &= ~(MIGRATE_PFN_MIGRATE |
7a40e7ad868d8f Balbir Singh            2025-07-04  1041  							 MIGRATE_PFN_COMPOUND);
7a40e7ad868d8f Balbir Singh            2025-07-04  1042  					goto next;
7a40e7ad868d8f Balbir Singh            2025-07-04  1043  				}
7a40e7ad868d8f Balbir Singh            2025-07-04  1044  				src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04  1045  			} else if ((src_pfns[i] & MIGRATE_PFN_MIGRATE) &&
7a40e7ad868d8f Balbir Singh            2025-07-04  1046  				(dst_pfns[i] & MIGRATE_PFN_COMPOUND) &&
7a40e7ad868d8f Balbir Singh            2025-07-04  1047  				!(src_pfns[i] & MIGRATE_PFN_COMPOUND)) {
7a40e7ad868d8f Balbir Singh            2025-07-04  1048  				src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04  1049  			}
7a40e7ad868d8f Balbir Singh            2025-07-04  1050  		}
7a40e7ad868d8f Balbir Singh            2025-07-04  1051  
7a40e7ad868d8f Balbir Singh            2025-07-04  1052  
6aaaef5b6fe3f5 Kefeng Wang             2024-05-24  1053  		if (folio_is_device_private(newfolio) ||
6aaaef5b6fe3f5 Kefeng Wang             2024-05-24  1054  		    folio_is_device_coherent(newfolio)) {
df263d9a7dffee Mika Penttilä           2023-06-07  1055  			if (mapping) {
76cbbead253ddc Christoph Hellwig       2022-02-16  1056  				/*
f25cbb7a95a24f Alex Sierra             2022-07-15  1057  				 * For now only support anonymous memory migrating to
f25cbb7a95a24f Alex Sierra             2022-07-15  1058  				 * device private or coherent memory.
df263d9a7dffee Mika Penttilä           2023-06-07  1059  				 *
df263d9a7dffee Mika Penttilä           2023-06-07  1060  				 * Try to get rid of swap cache if possible.
76cbbead253ddc Christoph Hellwig       2022-02-16  1061  				 */
df263d9a7dffee Mika Penttilä           2023-06-07  1062  				if (!folio_test_anon(folio) ||
df263d9a7dffee Mika Penttilä           2023-06-07  1063  				    !folio_free_swap(folio)) {
241f6885965683 Alistair Popple         2022-09-28  1064  					src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04  1065  					goto next;
76cbbead253ddc Christoph Hellwig       2022-02-16  1066  				}
df263d9a7dffee Mika Penttilä           2023-06-07  1067  			}
6aaaef5b6fe3f5 Kefeng Wang             2024-05-24  1068  		} else if (folio_is_zone_device(newfolio)) {
76cbbead253ddc Christoph Hellwig       2022-02-16  1069  			/*
76cbbead253ddc Christoph Hellwig       2022-02-16  1070  			 * Other types of ZONE_DEVICE page are not supported.
76cbbead253ddc Christoph Hellwig       2022-02-16  1071  			 */
241f6885965683 Alistair Popple         2022-09-28  1072  			src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
7a40e7ad868d8f Balbir Singh            2025-07-04  1073  			goto next;
76cbbead253ddc Christoph Hellwig       2022-02-16  1074  		}
76cbbead253ddc Christoph Hellwig       2022-02-16  1075  
15b0c79cfadad6 Kefeng Wang             2024-05-24  1076  		BUG_ON(folio_test_writeback(folio));
15b0c79cfadad6 Kefeng Wang             2024-05-24  1077  
241f6885965683 Alistair Popple         2022-09-28  1078  		if (migrate && migrate->fault_page == page)
15b0c79cfadad6 Kefeng Wang             2024-05-24  1079  			extra_cnt = 1;
15b0c79cfadad6 Kefeng Wang             2024-05-24  1080  		r = folio_migrate_mapping(mapping, newfolio, folio, extra_cnt);
76cbbead253ddc Christoph Hellwig       2022-02-16  1081  		if (r != MIGRATEPAGE_SUCCESS)
241f6885965683 Alistair Popple         2022-09-28  1082  			src_pfns[i] &= ~MIGRATE_PFN_MIGRATE;
15b0c79cfadad6 Kefeng Wang             2024-05-24  1083  		else
15b0c79cfadad6 Kefeng Wang             2024-05-24  1084  			folio_migrate_flags(newfolio, folio);
7a40e7ad868d8f Balbir Singh            2025-07-04  1085  next:
7a40e7ad868d8f Balbir Singh            2025-07-04  1086  		i += nr;
76cbbead253ddc Christoph Hellwig       2022-02-16  1087  	}
76cbbead253ddc Christoph Hellwig       2022-02-16  1088  
76cbbead253ddc Christoph Hellwig       2022-02-16  1089  	if (notified)
ec8832d007cb7b Alistair Popple         2023-07-25  1090  		mmu_notifier_invalidate_range_end(&range);
76cbbead253ddc Christoph Hellwig       2022-02-16  1091  }
76cbbead253ddc Christoph Hellwig       2022-02-16  1092  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

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

end of thread, other threads:[~2025-08-08  9:44 UTC | newest]

Thread overview: 100+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-03 23:34 [v1 resend 00/12] THP support for zone device page migration Balbir Singh
2025-07-03 23:35 ` [v1 resend 01/12] mm/zone_device: support large zone device private folios Balbir Singh
2025-07-07  5:28   ` Alistair Popple
2025-07-08  6:47     ` Balbir Singh
2025-07-03 23:35 ` [v1 resend 02/12] mm/migrate_device: flags for selecting device private THP pages Balbir Singh
2025-07-07  5:31   ` Alistair Popple
2025-07-08  7:31     ` Balbir Singh
2025-07-19 20:06       ` Matthew Brost
2025-07-19 20:16         ` Matthew Brost
2025-07-18  3:15   ` Matthew Brost
2025-07-03 23:35 ` [v1 resend 03/12] mm/thp: zone_device awareness in THP handling code Balbir Singh
2025-07-04  4:46   ` Mika Penttilä
2025-07-06  1:21     ` Balbir Singh
2025-07-04 11:10   ` Mika Penttilä
2025-07-05  0:14     ` Balbir Singh
2025-07-07  6:09       ` Alistair Popple
2025-07-08  7:40         ` Balbir Singh
2025-07-07  3:49   ` Mika Penttilä
2025-07-08  4:20     ` Balbir Singh
2025-07-08  4:30       ` Mika Penttilä
2025-07-07  6:07   ` Alistair Popple
2025-07-08  4:59     ` Balbir Singh
2025-07-22  4:42   ` Matthew Brost
2025-07-03 23:35 ` [v1 resend 04/12] mm/migrate_device: THP migration of zone device pages Balbir Singh
2025-07-04 15:35   ` kernel test robot
2025-07-18  6:59   ` Matthew Brost
2025-07-18  7:04     ` Balbir Singh
2025-07-18  7:21       ` Matthew Brost
2025-07-18  8:22         ` Matthew Brost
2025-07-22  4:54           ` Matthew Brost
2025-07-19  2:10   ` Matthew Brost
2025-07-03 23:35 ` [v1 resend 05/12] mm/memory/fault: add support for zone device THP fault handling Balbir Singh
2025-07-17 19:34   ` Matthew Brost
2025-07-03 23:35 ` [v1 resend 06/12] lib/test_hmm: test cases and support for zone device private THP Balbir Singh
2025-07-03 23:35 ` [v1 resend 07/12] mm/memremap: add folio_split support Balbir Singh
2025-07-04 11:14   ` Mika Penttilä
2025-07-06  1:24     ` Balbir Singh
2025-07-03 23:35 ` [v1 resend 08/12] mm/thp: add split during migration support Balbir Singh
2025-07-04  5:17   ` Mika Penttilä
2025-07-04  6:43     ` Mika Penttilä
2025-07-05  0:26       ` Balbir Singh
2025-07-05  3:17         ` Mika Penttilä
2025-07-07  2:35           ` Balbir Singh
2025-07-07  3:29             ` Mika Penttilä
2025-07-08  7:37               ` Balbir Singh
2025-07-04 11:24   ` Zi Yan
2025-07-05  0:58     ` Balbir Singh
2025-07-05  1:55       ` Zi Yan
2025-07-06  1:15         ` Balbir Singh
2025-07-06  1:34           ` Zi Yan
2025-07-06  1:47             ` Balbir Singh
2025-07-06  2:34               ` Zi Yan
2025-07-06  3:03                 ` Zi Yan
2025-07-07  2:29                   ` Balbir Singh
2025-07-07  2:45                     ` Zi Yan
2025-07-08  3:31                       ` Balbir Singh
2025-07-08  7:43                       ` Balbir Singh
2025-07-16  5:34               ` Matthew Brost
2025-07-16 11:19                 ` Zi Yan
2025-07-16 16:24                   ` Matthew Brost
2025-07-16 21:53                     ` Balbir Singh
2025-07-17 22:24                       ` Matthew Brost
2025-07-17 23:04                         ` Zi Yan
2025-07-18  0:41                           ` Matthew Brost
2025-07-18  1:25                             ` Zi Yan
2025-07-18  3:33                               ` Matthew Brost
2025-07-18 15:06                                 ` Zi Yan
2025-07-23  0:00                                   ` Matthew Brost
2025-07-03 23:35 ` [v1 resend 09/12] lib/test_hmm: add test case for split pages Balbir Singh
2025-07-03 23:35 ` [v1 resend 10/12] selftests/mm/hmm-tests: new tests for zone device THP migration Balbir Singh
2025-07-03 23:35 ` [v1 resend 11/12] gpu/drm/nouveau: add THP migration support Balbir Singh
2025-07-03 23:35 ` [v1 resend 12/12] selftests/mm/hmm-tests: new throughput tests including THP Balbir Singh
2025-07-04 16:16 ` [v1 resend 00/12] THP support for zone device page migration Zi Yan
2025-07-04 23:56   ` Balbir Singh
2025-07-08 14:53 ` David Hildenbrand
2025-07-08 22:43   ` Balbir Singh
2025-07-17 23:40 ` Matthew Brost
2025-07-18  3:57   ` Balbir Singh
2025-07-18  4:57     ` Matthew Brost
2025-07-21 23:48       ` Balbir Singh
2025-07-22  0:07         ` Matthew Brost
2025-07-22  0:51           ` Balbir Singh
2025-07-19  0:53     ` Matthew Brost
2025-07-21 11:42     ` Francois Dugast
2025-07-21 23:34       ` Balbir Singh
2025-07-22  0:01         ` Matthew Brost
2025-07-22 19:34         ` [PATCH] mm/hmm: Do not fault in device private pages owned by the caller Francois Dugast
2025-07-22 20:07           ` Andrew Morton
2025-07-23 15:34             ` Francois Dugast
2025-07-23 18:05               ` Matthew Brost
2025-07-24  0:25           ` Balbir Singh
2025-07-24  5:02             ` Matthew Brost
2025-07-24  5:46               ` Mika Penttilä
2025-07-24  5:57                 ` Matthew Brost
2025-07-24  6:04                   ` Mika Penttilä
2025-07-24  6:47                     ` Leon Romanovsky
2025-07-28 13:34               ` Jason Gunthorpe
2025-08-08  0:21           ` Matthew Brost
2025-08-08  9:43             ` Francois Dugast
  -- strict thread matches above, loose matches on Subject: below --
2025-07-04 18:11 [v1 resend 04/12] mm/migrate_device: THP migration of zone device pages kernel test robot

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.