Lines Matching refs:transfer_to
1128 struct dquot *transfer_to[MAXQUOTAS] = { }; in ocfs2_setattr() local
1234 transfer_to[USRQUOTA] = dqget(sb, make_kqid_uid(attr->ia_uid)); in ocfs2_setattr()
1235 if (IS_ERR(transfer_to[USRQUOTA])) { in ocfs2_setattr()
1236 status = PTR_ERR(transfer_to[USRQUOTA]); in ocfs2_setattr()
1237 transfer_to[USRQUOTA] = NULL; in ocfs2_setattr()
1244 transfer_to[GRPQUOTA] = dqget(sb, make_kqid_gid(attr->ia_gid)); in ocfs2_setattr()
1245 if (IS_ERR(transfer_to[GRPQUOTA])) { in ocfs2_setattr()
1246 status = PTR_ERR(transfer_to[GRPQUOTA]); in ocfs2_setattr()
1247 transfer_to[GRPQUOTA] = NULL; in ocfs2_setattr()
1259 status = __dquot_transfer(inode, transfer_to); in ocfs2_setattr()
1295 dqput(transfer_to[qtype]); in ocfs2_setattr()