Lines Matching refs:transfer_to
1123 struct dquot *transfer_to[MAXQUOTAS] = { }; in ocfs2_setattr() local
1232 transfer_to[USRQUOTA] = dqget(sb, make_kqid_uid(attr->ia_uid)); in ocfs2_setattr()
1233 if (IS_ERR(transfer_to[USRQUOTA])) { in ocfs2_setattr()
1234 status = PTR_ERR(transfer_to[USRQUOTA]); in ocfs2_setattr()
1235 transfer_to[USRQUOTA] = NULL; in ocfs2_setattr()
1242 transfer_to[GRPQUOTA] = dqget(sb, make_kqid_gid(attr->ia_gid)); in ocfs2_setattr()
1243 if (IS_ERR(transfer_to[GRPQUOTA])) { in ocfs2_setattr()
1244 status = PTR_ERR(transfer_to[GRPQUOTA]); in ocfs2_setattr()
1245 transfer_to[GRPQUOTA] = NULL; in ocfs2_setattr()
1257 status = __dquot_transfer(inode, transfer_to); in ocfs2_setattr()
1293 dqput(transfer_to[qtype]); in ocfs2_setattr()