diff options
author | Christoph Hellwig <hch@infradead.org> | 2013-11-14 14:32:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-15 09:32:22 +0900 |
commit | b89241e8cdb8321c20546d47645a9b65b58113b5 (patch) | |
tree | de330bd740b3f7e24f834df48b3db47dc1c75889 /include | |
parent | ca5ecd64c2cdbcd316d789467147e732746f39fa (diff) | |
download | linux-b89241e8cdb8321c20546d47645a9b65b58113b5.tar.bz2 |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/llist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/llist.h b/include/linux/llist.h index 8828a78dec9a..fbf10a0bc095 100644 --- a/include/linux/llist.h +++ b/include/linux/llist.h @@ -195,4 +195,6 @@ static inline struct llist_node *llist_del_all(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 */ |