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);
44 rb_link_node(&iop->rb_node, parent, p);
45 rb_insert_color(&iop->rb_node, root);
67 void rb_foreach(struct rb_node *n, struct io *iop,
68 void (*fnc)(struct io *iop, struct io *this),
73 __u64 iop_s = BIT_START(iop), iop_e = BIT_END(iop);
77 if (fnc) fnc(iop, this);
82 rb_foreach(n->rb_left, iop, fnc, head);
84 rb_foreach(n->rb_right, iop, fnc, head);