Searched refs:umem_src (Results 1 – 1 of 1) sorted by relevance
/linux/lib/ |
H A D | usercopy_kunit.c | 107 char *umem_src = NULL, *expected = NULL; in usercopy_test_copy_struct_from_user() local 114 umem_src = kunit_kmalloc(test, size, GFP_KERNEL); in usercopy_test_copy_struct_from_user() 115 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, umem_src); in usercopy_test_copy_struct_from_user() 121 memset(umem_src, 0x3e, size); in usercopy_test_copy_struct_from_user() 122 KUNIT_ASSERT_EQ_MSG(test, copy_to_user(umem, umem_src, size), 0, in usercopy_test_copy_struct_from_user() 129 memcpy(expected, umem_src, ksize); in usercopy_test_copy_struct_from_user() 141 memcpy(expected, umem_src, usize); in usercopy_test_copy_struct_from_user() 162 memcpy(expected, umem_src, ksize); in usercopy_test_copy_struct_from_user()
|