On Thu, 2012-08-02 at 15:34 -0700, Michel Lespinasse wrote: > convert arch/x86/mm/pat_rbtree.c to the proposed augmented rbtree api > and remove the old augmented rbtree implementation. style trivia: > +static u64 compute_subtree_max_end(struct memtype *data) > { > - struct memtype *data; > - u64 max_end, child_max_end; > - > - if (!node) > - return; > - > - data = container_of(node, struct memtype, rb); > - max_end = data->end; > + u64 max_end = data->end, child_max_end; > > - child_max_end = get_subtree_max_end(node->rb_right); > + child_max_end = get_subtree_max_end(data->rb.rb_right); I think this reads better as: u64 max_end = data->end; u64 child_max_end = get_subtree_max_end(node->rb.rb_right); -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>