MSharq
MSharq

Reputation: 65

Linux kernel hashtable struct hlist_head

Can anybody tell me the location where kernel hashtable struct hlist_head and struct hlist_node is defined in the linux kernel? I searched in free-electrons.com but couldn't get hold of the defination.

Upvotes: 0

Views: 981

Answers (1)

Harry
Harry

Reputation: 11648

You can find it in types.h

http://lxr.free-electrons.com/source/include/linux/types.h#L189

It's also in a few other places. Check Linux Cross Reference.

http://lxr.free-electrons.com/ident?i=hlist_head

Upvotes: 1

Related Questions