October 2017
Intermediate to advanced
586 pages
14h 8m
English
List handling is an easy task in kernel code. Deleting a node is straightforward:
void list_del(struct list_head *entry);
Following the preceding example, let's delete the red car:
list_del(&redcar->list);