Lines Matching refs:transfer_to
1124 struct dquot *transfer_to[MAXQUOTAS] = { }; in ocfs2_setattr() local
1230 transfer_to[USRQUOTA] = dqget(sb, make_kqid_uid(attr->ia_uid)); in ocfs2_setattr()
1231 if (IS_ERR(transfer_to[USRQUOTA])) { in ocfs2_setattr()
1232 status = PTR_ERR(transfer_to[USRQUOTA]); in ocfs2_setattr()
1233 transfer_to[USRQUOTA] = NULL; in ocfs2_setattr()
1240 transfer_to[GRPQUOTA] = dqget(sb, make_kqid_gid(attr->ia_gid)); in ocfs2_setattr()
1241 if (IS_ERR(transfer_to[GRPQUOTA])) { in ocfs2_setattr()
1242 status = PTR_ERR(transfer_to[GRPQUOTA]); in ocfs2_setattr()
1243 transfer_to[GRPQUOTA] = NULL; in ocfs2_setattr()
1255 status = __dquot_transfer(inode, transfer_to); in ocfs2_setattr()
1291 dqput(transfer_to[qtype]); in ocfs2_setattr()