Searched refs:transfer_to (Results 1 – 1 of 1) sorted by relevance
1125 struct dquot *transfer_to[MAXQUOTAS] = { }; in ocfs2_setattr() local1240 transfer_to[USRQUOTA] = dqget(sb, make_kqid_uid(attr->ia_uid)); in ocfs2_setattr()1241 if (IS_ERR(transfer_to[USRQUOTA])) { in ocfs2_setattr()1242 status = PTR_ERR(transfer_to[USRQUOTA]); in ocfs2_setattr()1243 transfer_to[USRQUOTA] = NULL; in ocfs2_setattr()1250 transfer_to[GRPQUOTA] = dqget(sb, make_kqid_gid(attr->ia_gid)); in ocfs2_setattr()1251 if (IS_ERR(transfer_to[GRPQUOTA])) { in ocfs2_setattr()1252 status = PTR_ERR(transfer_to[GRPQUOTA]); in ocfs2_setattr()1253 transfer_to[GRPQUOTA] = NULL; in ocfs2_setattr()1265 status = __dquot_transfer(inode, transfer_to); in ocfs2_setattr()[all …]