Home
last modified time | relevance | path

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

/linux/tools/testing/vma/
H A Dvma.c1625 struct vm_area_struct *vma, *vma_new, *vma_next; in test_copy_vma() local
1630 vma_new = copy_vma(&vma, 0, 0x2000, 0, &need_locks); in test_copy_vma()
1631 ASSERT_NE(vma_new, vma); in test_copy_vma()
1632 ASSERT_EQ(vma_new->vm_start, 0); in test_copy_vma()
1633 ASSERT_EQ(vma_new->vm_end, 0x2000); in test_copy_vma()
1634 ASSERT_EQ(vma_new->vm_pgoff, 0); in test_copy_vma()
1635 vma_assert_attached(vma_new); in test_copy_vma()
1643 vma_new = copy_vma(&vma, 0x4000, 0x2000, 4, &need_locks); in test_copy_vma()
1644 vma_assert_attached(vma_new); in test_copy_vma()
1646 ASSERT_EQ(vma_new, vma_next); in test_copy_vma()