函数源码

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source File:include\linux\rbtree_augmented.h Create Date:2022-07-27 07:09:57
首页 Copyright©Brick

298
299
300
301
302
303
304
305
static __always_inline void
rb_erase_augmented(struct rb_node *node, struct rb_root *root,
           const struct rb_augment_callbacks *augment)
{
    struct rb_node *rebalance = __rb_erase_augmented(node, root, augment);
    if (rebalance)
        __rb_erase_color(rebalance, root, augment->rotate);
}