Remove element from list. */
| 71 | |
| 72 | /* Remove element from list. */ |
| 73 | static inline void __list_del(struct list_head *prev, struct list_head *next) |
| 74 | { |
| 75 | next->prev = prev; |
| 76 | prev->next = next; |
| 77 | } |
| 78 | |
| 79 | /* Remove element from list. */ |
| 80 | static inline void list_del(struct list_head *elem) |