]> git.karo-electronics.de Git - karo-tx-linux.git/commit
llist: llist_add() can use llist_add_batch()
authorOleg Nesterov <oleg@redhat.com>
Thu, 27 Jun 2013 23:51:14 +0000 (09:51 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 28 Jun 2013 06:37:22 +0000 (16:37 +1000)
commit9fbf71515d6620e22f60feca7eda072a9e8d7a04
treedc725e4ef81327fd18a6045550b57b102cb56980
parentd759e25acf2ea8d04238be6c9c644b4cb7e9232d
llist: llist_add() can use llist_add_batch()

llist_add(new, head) can simply use llist_add_batch(new, new, head),
no need to duplicate the code.

This obviously uninlines llist_add() and to me this is a win. But we
can make llist_add_batch() inline if this is desirable, in this case
gcc can notice that new_first == new_last if the caller is llist_add().

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Andrey Vagin <avagin@openvz.org>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Huang Ying <ying.huang@intel.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/llist.h