The patch titled list_islast utility has been added to the -mm tree. Its filename is list_islast-utility.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: list_islast utility From: Shailabh Nagar <nagar@xxxxxxxxxxxxxx> Add another list utility function to check for last element in a list. Signed-off-by: Shailabh Nagar <nagar@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/list.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff -puN include/linux/list.h~list_islast-utility include/linux/list.h --- a/include/linux/list.h~list_islast-utility +++ a/include/linux/list.h @@ -265,6 +265,17 @@ static inline void list_move_tail(struct } /** + * list_islast - tests whether @list is the last entry in list @head + * @list: the entry to test + * @head: the head of the list + */ +static inline int list_islast(const struct list_head *list, + const struct list_head *head) +{ + return list->next == head; +} + +/** * list_empty - tests whether a list is empty * @head: the list to test. */ _ Patches currently in -mm which might be from nagar@xxxxxxxxxxxxxx are netlink-improve-string-attribute-validation.patch list_islast-utility.patch per-task-delay-accounting-setup.patch per-task-delay-accounting-sync-block-i-o-and-swapin-delay-collection.patch per-task-delay-accounting-cpu-delay-collection-via-schedstats.patch per-task-delay-accounting-utilities-for-genetlink-usage.patch per-task-delay-accounting-taskstats-interface.patch per-task-delay-accounting-delay-accounting-usage-of-taskstats-interface.patch per-task-delay-accounting-documentation.patch per-task-delay-accounting-proc-export-of-aggregated-block-i-o-delays.patch delay-accounting-taskstats-interface-send-tgid-once.patch per-task-delay-accounting-avoid-send-without-listeners.patch per-task-delay-accounting-taskstats-interface-control-exit-data-through-cpumasks.patch per-task-delay-accounting-taskstats-interface-control-exit-data-through-cpumasks-fix.patch per-task-delay-accounting-taskstats-interface-code-cleanup.patch per-task-delay-accounting-taskstats-interface-documentation-fix.patch per-task-delay-accounting-taskstats-interface-fix-early-sem-init.patch per-task-delay-accounting-taskstats-interface-fix-drop-listener-only-on-socket-close.patch per-task-delay-accounting-taskstats-interface-fix-clone-skbs-for-each-listener.patch task-watchers-register-per-task-delay-accounting.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