Lines Matching full:co
445 struct check_owner *co; in xchk_btree_check_owner() local
447 co = kmalloc(sizeof(struct check_owner), XCHK_GFP_FLAGS); in xchk_btree_check_owner()
448 if (!co) in xchk_btree_check_owner()
451 INIT_LIST_HEAD(&co->list); in xchk_btree_check_owner()
452 co->level = level; in xchk_btree_check_owner()
453 co->daddr = xfs_buf_daddr(bp); in xchk_btree_check_owner()
454 list_add_tail(&co->list, &bs->to_check); in xchk_btree_check_owner()
690 struct check_owner *co; in xchk_btree() local
792 list_for_each_entry_safe(co, n, &bs->to_check, list) { in xchk_btree()
794 error = xchk_btree_check_block_owner(bs, co->level, in xchk_btree()
795 co->daddr); in xchk_btree()
796 list_del(&co->list); in xchk_btree()
797 kfree(co); in xchk_btree()