Searched refs:vma_new (Results 1 – 1 of 1) sorted by relevance
| /linux/tools/testing/vma/tests/ |
| H A D | vma.c | 36 struct vm_area_struct *vma, *vma_prev, *vma_new, *vma_next, *vma_orig; in test_copy_vma() local 43 vma_new = copy_vma(&vma, 0x2000, 0x1000, 1, 1, &need_locks); in test_copy_vma() 44 ASSERT_EQ(vma_new, vma_orig); in test_copy_vma() 46 ASSERT_EQ(vma_new->vm_start, 0x1000); in test_copy_vma() 47 ASSERT_EQ(vma_new->vm_end, 0x3000); in test_copy_vma() 56 vma_new = copy_vma(&vma, 0x1000, 0x1000, 2, 2, &need_locks); in test_copy_vma() 57 ASSERT_EQ(vma_new, vma_orig); in test_copy_vma() 59 ASSERT_EQ(vma_new->vm_start, 0x1000); in test_copy_vma() 60 ASSERT_EQ(vma_new->vm_end, 0x3000); in test_copy_vma() 74 vma_new = copy_vma(&vma, 0x2000, 0x1000, 3, 3, &need_locks); in test_copy_vma() [all …]
|