Home | History | Annotate | Download | only in btt

Lines Matching refs:iop

24 int rb_insert(struct rb_root *root, struct io *iop)
29 __u64 __s, s = BIT_START(iop);
41 rb_replace_node(parent, &iop->rb_node, root);
46 rb_link_node(&iop->rb_node, parent, p);
47 rb_insert_color(&iop->rb_node, root);
69 void rb_foreach(struct rb_node *n, struct io *iop,
70 void (*fnc)(struct io *iop, struct io *this),
75 __u64 iop_s = BIT_START(iop), iop_e = BIT_END(iop);
79 if (fnc) fnc(iop, this);
84 rb_foreach(n->rb_left, iop, fnc, head);
86 rb_foreach(n->rb_right, iop, fnc, head);