Lines Matching full:co
446 struct check_owner *co; in xchk_btree_check_owner() local
448 co = kmalloc(sizeof(struct check_owner), XCHK_GFP_FLAGS); in xchk_btree_check_owner()
449 if (!co) in xchk_btree_check_owner()
452 INIT_LIST_HEAD(&co->list); in xchk_btree_check_owner()
453 co->level = level; in xchk_btree_check_owner()
454 co->daddr = xfs_buf_daddr(bp); in xchk_btree_check_owner()
455 list_add_tail(&co->list, &bs->to_check); in xchk_btree_check_owner()
698 struct check_owner *co; in xchk_btree() local
800 list_for_each_entry_safe(co, n, &bs->to_check, list) { in xchk_btree()
802 error = xchk_btree_check_block_owner(bs, co->level, in xchk_btree()
803 co->daddr); in xchk_btree()
804 list_del(&co->list); in xchk_btree()
805 kfree(co); in xchk_btree()