Symbol: list_is_head
drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
478
while (!list_is_head(prev->next, &vm->individual.idle)) {
drivers/net/dsa/mv88e6xxx/tcam.c
151
if (list_is_head(hpos, &chip->tcam.entries)) {
fs/netfs/read_retry.c
247
} while (!list_is_head(next, &stream->subrequests));
fs/netfs/write_retry.c
200
} while (!list_is_head(next, &stream->subrequests));
include/linux/list.h
441
return list_is_head(next, head) && (next == READ_ONCE(head->prev));
include/linux/list.h
516
if (list_is_singular(head) && !list_is_head(entry, head) && (entry != head->next))
include/linux/list.h
518
if (list_is_head(entry, head))
include/linux/list.h
746
for (pos = (head)->next; !list_is_head(pos, (head)); pos = pos->next)
include/linux/list.h
756
for (pos = pos->next; !list_is_head(pos, (head)); pos = pos->next)
include/linux/list.h
764
for (pos = (head)->prev; !list_is_head(pos, (head)); pos = pos->prev)
include/linux/list.h
774
!list_is_head(pos, (head)); \
include/linux/list.h
785
!list_is_head(pos, (head)); \
include/linux/list.h
810
list_is_head(&pos->member, (head))
include/linux/list_private.h
104
list_is_head(&ACCESS_PRIVATE(pos, member), (head))
include/linux/rculist.h
52
!list_is_head(pos, (head)); \
kernel/nstree.c
376
if (list_is_head(list, &ns_tree->ns_list_head))
lib/tests/list-test.c
271
KUNIT_EXPECT_TRUE_MSG(test, list_is_head(&a, &a),
lib/tests/list-test.c
273
KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &b),
lib/tests/list-test.c
275
KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &c),
tools/testing/selftests/bpf/progs/mptcp_bpf.h
24
list_is_head(&pos->member, (head))