Searched hist:"59633 abf34e2f44b8e772a2c12a92132aa7c2220" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/lib/ |
H A D | rbtree.c | diff 59633abf34e2f44b8e772a2c12a92132aa7c2220 Mon Oct 08 18:31:02 CDT 2012 Michel Lespinasse <walken@google.com> rbtree: optimize fetching of sibling node
When looking to fetch a node's sibling, we went through a sequence of: - check if node is the parent's left child - if it is, then fetch the parent's right child
This can be replaced with: - fetch the parent's right child as an assumed sibling - check that node is NOT the fetched child
This avoids fetching the parent's left child when node is actually that child. Saves a bit on code size, though it doesn't seem to make a large difference in speed.
Signed-off-by: Michel Lespinasse <walken@google.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: David Woodhouse <David.Woodhouse@intel.com> Acked-by: Rik van Riel <riel@redhat.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Daniel Santos <daniel.santos@pobox.com> Cc: Jens Axboe <axboe@kernel.dk> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
|