Files
ubports_kernel_google_msm/lib
Wolfram Strepp 4b324126e0 rb_tree: remove redundant if()-condition in rb_erase()
Furthermore, notice that the initial checks:

	if (!node->rb_left)
		child = node->rb_right;
	else if (!node->rb_right)
		child = node->rb_left;
	else
	{
		...
	}
guarantee that old->rb_right is set in the final else branch, therefore
we can omit checking that again.

Signed-off-by: Wolfram Strepp <wstrepp@gmx.de>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2009-06-16 19:47:56 -07:00
..
2009-06-11 21:02:51 +02:00
2009-01-06 15:59:11 -08:00
2009-01-01 10:12:19 +10:30
2009-06-16 19:47:51 -07:00
2009-04-02 19:04:53 -07:00
2008-07-26 12:00:07 -07:00
2009-02-11 13:38:00 +11:00
2008-07-26 12:00:07 -07:00
2008-07-30 16:29:19 -07:00
2008-07-26 12:00:10 -07:00
2008-07-26 12:00:10 -07:00