Lines Matching defs:new
426 /* Allocate a new block */
466 struct rb_node **new = &(root->rb_node), *parent = NULL;
469 /* Figure out where to put the new node */
470 while (*new) {
471 b = container_of(*new, struct dmz_mblock, node);
472 parent = *new;
473 new = (b->no < mblk->no) ? &((*new)->rb_left) : &((*new)->rb_right);
476 /* Add new node and rebalance tree */
477 rb_link_node(&mblk->node, parent, new);
548 /* Get a new block and a BIO to read it */