Lines Matching full:el
61 struct debug_el *el, **elts; in list_sort_test() local
70 el = kunit_kmalloc(test, sizeof(*el), GFP_KERNEL); in list_sort_test()
71 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, el); in list_sort_test()
74 el->value = get_random_u32_below(TEST_LIST_LEN / 3); in list_sort_test()
75 el->serial = i; in list_sort_test()
76 el->poison1 = TEST_POISON1; in list_sort_test()
77 el->poison2 = TEST_POISON2; in list_sort_test()
78 elts[i] = el; in list_sort_test()
79 list_add_tail(&el->list, &head); in list_sort_test()
94 el = container_of(cur, struct debug_el, list); in list_sort_test()
97 KUNIT_ASSERT_LE_MSG(test, el->serial, el1->serial, in list_sort_test()
101 check(test, el, el1); in list_sort_test()