Lines Matching defs:new
30 struct xfs_extent_busy *new;
36 new = kmem_zalloc(sizeof(struct xfs_extent_busy), 0);
37 new->agno = agno;
38 new->bno = bno;
39 new->length = len;
40 INIT_LIST_HEAD(&new->list);
41 new->flags = flags;
46 pag = xfs_perag_get(tp->t_mountp, new->agno);
53 if (new->bno < busyp->bno) {
55 ASSERT(new->bno + new->length <= busyp->bno);
56 } else if (new->bno > busyp->bno) {
64 rb_link_node(&new->rb_node, parent, rbp);
65 rb_insert_color(&new->rb_node, &pag->pagb_tree);
67 list_add(&new->list, &tp->t_busy);