Prev: [patch 1/3] ext4: Fixup rb_root initializations to use RB_ROOT
Next: [patch 3/3] jffs2: Fixup rb_root initializations to use RB_ROOT
From: venkatesh.pallipadi on 23 Feb 2010 20:50 Eric Paris found a problem with rb_root initializations and sent a patch to fix it here: http://lkml.indiana.edu/hypermail/linux/kernel/1002.2/02946.html btrfs: use RB_ROOT to intialize rb_trees instead of setting rb_node to NULL Based on that, a simple grep for "rb_node = NULL" showed few more similar usages in ext3, ext4 and jffs2. Here are the patches to fix those root.rb_node = NULL usages to root = RB_ROOT Compile tested. Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi(a)intel.com> -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |