|
@@ -427,7 +427,9 @@ static inline void dummy_copy(struct rb_node *old, struct rb_node *new) {}
|
|
static inline void dummy_rotate(struct rb_node *old, struct rb_node *new) {}
|
|
static inline void dummy_rotate(struct rb_node *old, struct rb_node *new) {}
|
|
|
|
|
|
static const struct rb_augment_callbacks dummy_callbacks = {
|
|
static const struct rb_augment_callbacks dummy_callbacks = {
|
|
- dummy_propagate, dummy_copy, dummy_rotate
|
|
|
|
|
|
+ .propagate = dummy_propagate,
|
|
|
|
+ .copy = dummy_copy,
|
|
|
|
+ .rotate = dummy_rotate
|
|
};
|
|
};
|
|
|
|
|
|
void rb_insert_color(struct rb_node *node, struct rb_root *root)
|
|
void rb_insert_color(struct rb_node *node, struct rb_root *root)
|