Lines Matching refs:dquot
466 struct dquot *dquot; in ocfs2_recover_local_quota_file() local
498 dquot = dqget(sb, in ocfs2_recover_local_quota_file()
501 if (IS_ERR(dquot)) { in ocfs2_recover_local_quota_file()
502 status = PTR_ERR(dquot); in ocfs2_recover_local_quota_file()
524 spin_lock(&dquot->dq_dqb_lock); in ocfs2_recover_local_quota_file()
530 dquot->dq_dqb.dqb_curspace += spacechange; in ocfs2_recover_local_quota_file()
531 dquot->dq_dqb.dqb_curinodes += inodechange; in ocfs2_recover_local_quota_file()
532 spin_unlock(&dquot->dq_dqb_lock); in ocfs2_recover_local_quota_file()
536 status = ocfs2_global_release_dquot(dquot); in ocfs2_recover_local_quota_file()
561 dqput(dquot); in ocfs2_recover_local_quota_file()
893 int ocfs2_local_write_dquot(struct dquot *dquot) in ocfs2_local_write_dquot() argument
895 struct super_block *sb = dquot->dq_sb; in ocfs2_local_write_dquot()
896 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_local_write_dquot()
898 struct inode *lqinode = sb_dqopt(sb)->files[dquot->dq_id.type]; in ocfs2_local_write_dquot()
1216 int ocfs2_create_local_dquot(struct dquot *dquot) in ocfs2_create_local_dquot() argument
1218 struct super_block *sb = dquot->dq_sb; in ocfs2_create_local_dquot()
1219 int type = dquot->dq_id.type; in ocfs2_create_local_dquot()
1222 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_create_local_dquot()
1248 status = ocfs2_local_write_dquot(dquot); in ocfs2_create_local_dquot()
1270 int ocfs2_local_release_dquot(handle_t *handle, struct dquot *dquot) in ocfs2_local_release_dquot() argument
1273 int type = dquot->dq_id.type; in ocfs2_local_release_dquot()
1274 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_local_release_dquot()
1275 struct super_block *sb = dquot->dq_sb; in ocfs2_local_release_dquot()