at v2.6.34 553 B view raw
1#include "../../../../include/linux/list.h" 2 3#ifndef PERF_LIST_H 4#define PERF_LIST_H 5/** 6 * list_del_range - deletes range of entries from list. 7 * @begin: first element in the range to delete from the list. 8 * @end: last element in the range to delete from the list. 9 * Note: list_empty on the range of entries does not return true after this, 10 * the entries is in an undefined state. 11 */ 12static inline void list_del_range(struct list_head *begin, 13 struct list_head *end) 14{ 15 begin->prev->next = end->next; 16 end->next->prev = begin->prev; 17} 18#endif