On Mon, Aug 6, 2012 at 7:29 AM, Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote: > On Thu, 2012-08-02 at 15:34 -0700, Michel Lespinasse wrote: >> +void __rb_insert_augmented(struct rb_node *node, struct rb_root *root, >> + void (*augment_rotate)(struct rb_node *old, struct rb_node *new)) >> +{ >> + __rb_insert(node, root, augment_rotate); >> +} >> +EXPORT_SYMBOL(__rb_insert_augmented); >> + >> +void rb_erase_augmented(struct rb_node *node, struct rb_root *root, >> + const struct rb_augment_callbacks *augment) >> +{ >> + __rb_erase(node, root, augment); >> +} >> +EXPORT_SYMBOL(rb_erase_augmented); > > From a symmetry POV I'd say have both take the rb_augment_callbacks > thing. The two taking different arguments is confusing at best. The idea there is that from the user's point of view, both take the struct rb_augment_callbacks. Note that include/linux/rbtree.h has this: static inline void rb_insert_augmented(struct rb_node *node, struct rb_root *root, const struct rb_augment_callbacks *augment) { __rb_insert_augmented(node, root, augment->rotate); } Now the reason why the actual implementation takes the function pointer directly (and not the struct) is that the expected case is that the call site will have the struct declared as a const, so the compiler will be able to optimize out the dereference and directly pass out the function pointer as a constant. -- Michel "Walken" Lespinasse A program is never fully debugged until the last user dies. -- 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>