The patch titled statistics infrastructure - prerequisite: list operation has been added to the -mm tree. Its filename is statistics-infrastructure-prerequisite-list.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: statistics infrastructure - prerequisite: list operation From: Martin Peschke <mp3@xxxxxxxxxx> Add another list_for_each_* derivate. I can't work around it because there is a list that I need to search both ways. Signed-off-by: Martin Peschke <mp3@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/list.h | 13 +++++++++++++ 1 files changed, 13 insertions(+) diff -puN include/linux/list.h~statistics-infrastructure-prerequisite-list include/linux/list.h --- 25/include/linux/list.h~statistics-infrastructure-prerequisite-list Wed May 24 15:57:52 2006 +++ 25-akpm/include/linux/list.h Wed May 24 15:57:52 2006 @@ -431,6 +431,19 @@ static inline void list_splice_init(stru pos = list_entry(pos->member.next, typeof(*pos), member)) /** + * list_for_each_entry_continue_reverse - list iterator variant + * @pos: the type * to use as a loop counter. + * @head: the head for your list. + * @member: the name of the list_struct within the struct. + * + * Iterates backwards over list of given type continuing before given point. + */ +#define list_for_each_entry_continue_reverse(pos, head, member) \ + for (pos = list_entry(pos->member.prev, typeof(*pos), member); \ + prefetch(pos->member.prev), &pos->member != (head); \ + pos = list_entry(pos->member.prev, typeof(*pos), member)) + +/** * list_for_each_entry_from - iterate over list of given type from the current point * @pos: the type * to use as a loop cursor. * @head: the head for your list. _ Patches currently in -mm which might be from mp3@xxxxxxxxxx are statistics-infrastructure-prerequisite-list.patch statistics-infrastructure-prerequisite-parser.patch statistics-infrastructure-prerequisite-timestamp.patch statistics-infrastructure-documentation.patch statistics-infrastructure.patch statistics-infrastructure-exploitation-zfcp.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html