LIST_EMPTY
#define LIST_EMPTY(head) (LIST_FIRST(head) == LIST_END(head))
#undef LIST_EMPTY
#define LIST_EMPTY(head) ((head)->lh_first == NULL)