diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/list.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/list.h b/include/linux/list.h index beb6e48e116f..67258b47e9ca 100644 --- a/include/linux/list.h +++ b/include/linux/list.h | |||
| @@ -411,6 +411,17 @@ static inline void list_splice_init(struct list_head *list, | |||
| 411 | pos = list_entry(pos->member.next, typeof(*pos), member)) | 411 | pos = list_entry(pos->member.next, typeof(*pos), member)) |
| 412 | 412 | ||
| 413 | /** | 413 | /** |
| 414 | * list_for_each_entry_from - iterate over list of given type | ||
| 415 | * continuing from existing point | ||
| 416 | * @pos: the type * to use as a loop counter. | ||
| 417 | * @head: the head for your list. | ||
| 418 | * @member: the name of the list_struct within the struct. | ||
| 419 | */ | ||
| 420 | #define list_for_each_entry_from(pos, head, member) \ | ||
| 421 | for (; prefetch(pos->member.next), &pos->member != (head); \ | ||
| 422 | pos = list_entry(pos->member.next, typeof(*pos), member)) | ||
| 423 | |||
| 424 | /** | ||
| 414 | * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry | 425 | * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry |
| 415 | * @pos: the type * to use as a loop counter. | 426 | * @pos: the type * to use as a loop counter. |
| 416 | * @n: another type * to use as temporary storage | 427 | * @n: another type * to use as temporary storage |
