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