Lines Matching refs:el
215 struct debug_el *el; in list_sort_test() local
228 el = kmalloc(sizeof(*el), GFP_KERNEL); in list_sort_test()
229 if (!el) { in list_sort_test()
234 el->value = prandom_u32() % (TEST_LIST_LEN / 3); in list_sort_test()
235 el->serial = i; in list_sort_test()
236 el->poison1 = TEST_POISON1; in list_sort_test()
237 el->poison2 = TEST_POISON2; in list_sort_test()
238 elts[i] = el; in list_sort_test()
239 list_add_tail(&el->list, &head); in list_sort_test()
260 el = container_of(cur, struct debug_el, list); in list_sort_test()
262 if (cmp_result == 0 && el->serial >= el1->serial) { in list_sort_test()
268 if (check(el, el1)) { in list_sort_test()