Search notes:

include/linux/types.h

struct list_head

struct list_head {
        struct list_head *next, *prev;
};
Some functions to manipulate a list_head seem to be found in include/linux/list.h.
A list_head is found, for example, in struct kobject or struct kset.

Index