]> git.baikalelectronics.ru Git - kernel.git/commit
llist: llist_add() can use llist_add_batch()
authorOleg Nesterov <oleg@redhat.com>
Mon, 8 Jul 2013 21:24:19 +0000 (14:24 -0700)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 13 Jul 2013 09:29:32 +0000 (13:29 +0400)
commit469007643a6465fad0bde82c2ab3346378c2852a
treebae88dcb02c02d93bd2eca8ba3334b2f16a14b9d
parent35e412d7881c8790eb6a2a761b6ef983377d6e45
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>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
include/linux/llist.h