aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2013-11-14 14:32:11 -0800
committerMister Oyster <oysterized@gmail.com>2017-09-11 11:34:27 +0200
commitcb0f38652f775a21e09939cac3031ffe7417c563 (patch)
tree5fb990c84140c198a5fda09a92839c284bba00f1 /include
parentcb2d35c2eb49fc70dd31c6c75184043c943f0e4d (diff)
llists: move llist_reverse_order from raid5 to llist.c
Make this useful helper available for other users. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jan Kara <jack@suse.cz> Cc: Jens Axboe <axboe@kernel.dk> Cc: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Conflicts: drivers/md/raid5.c Change-Id: Ibfc31e7289ffe9bda511c88543bc2deb70a4691b Signed-off-by: Francisco Franco <franciscofranco.1990@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/llist.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/llist.h b/include/linux/llist.h
index 197228346..6c690687b 100644
--- a/include/linux/llist.h
+++ b/include/linux/llist.h
@@ -212,4 +212,6 @@ extern bool llist_add_batch(struct llist_node *new_first,
struct llist_head *head);
extern struct llist_node *llist_del_first(struct llist_head *head);
+struct llist_node *llist_reverse_order(struct llist_node *head);
+
#endif /* LLIST_H */