Home | History | Annotate | Download | only in lfs

Lines Matching defs:lbp

627 	struct lbnentry *lbp;
642 lbp = (struct lbnentry *)pool_get(&lfs_lbnentry_pool, PR_WAITOK);
643 lbp->lbn = lbn;
645 if (SPLAY_INSERT(lfs_splay, &ip->i_lfs_lbtree, lbp) != NULL) {
648 pool_put(&lfs_lbnentry_pool, lbp);
661 lfs_do_deregister(struct lfs *fs, struct inode *ip, struct lbnentry *lbp)
668 SPLAY_REMOVE(lfs_splay, &ip->i_lfs_lbtree, lbp);
677 pool_put(&lfs_lbnentry_pool, lbp);
688 struct lbnentry *lbp;
700 if ((lbp = SPLAY_FIND(lfs_splay, &ip->i_lfs_lbtree, &tmp)) != NULL)
701 lfs_do_deregister(fs, ip, lbp);
708 struct lbnentry *lbp;
718 while ((lbp = SPLAY_MIN(lfs_splay, hd)) != NULL)
719 lfs_do_deregister(fs, ip, lbp);