Home
last modified time | relevance | path

Searched refs:vma_new (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/tools/testing/vma/
H A Dvma.c1541 struct vm_area_struct *vma, *vma_new, *vma_next; in test_copy_vma() local
1546 vma_new = copy_vma(&vma, 0, 0x2000, 0, &need_locks); in test_copy_vma()
1547 ASSERT_NE(vma_new, vma); in test_copy_vma()
1548 ASSERT_EQ(vma_new->vm_start, 0); in test_copy_vma()
1549 ASSERT_EQ(vma_new->vm_end, 0x2000); in test_copy_vma()
1550 ASSERT_EQ(vma_new->vm_pgoff, 0); in test_copy_vma()
1551 vma_assert_attached(vma_new); in test_copy_vma()
1559 vma_new = copy_vma(&vma, 0x4000, 0x2000, 4, &need_locks); in test_copy_vma()
1560 vma_assert_attached(vma_new); in test_copy_vma()
1562 ASSERT_EQ(vma_new, vma_next); in test_copy_vma()