• Home
  • Raw
  • Download

Lines Matching refs:dquot

437 	struct dquot *dquot;  in ocfs2_recover_local_quota_file()  local
473 dquot = dqget(sb, le64_to_cpu(dqblk->dqb_id), type); in ocfs2_recover_local_quota_file()
474 if (!dquot) { in ocfs2_recover_local_quota_file()
497 dquot->dq_dqb.dqb_curspace += spacechange; in ocfs2_recover_local_quota_file()
498 dquot->dq_dqb.dqb_curinodes += inodechange; in ocfs2_recover_local_quota_file()
503 status = ocfs2_global_release_dquot(dquot); in ocfs2_recover_local_quota_file()
527 dqput(dquot); in ocfs2_recover_local_quota_file()
856 static int ocfs2_local_write_dquot(struct dquot *dquot) in ocfs2_local_write_dquot() argument
858 struct super_block *sb = dquot->dq_sb; in ocfs2_local_write_dquot()
859 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_local_write_dquot()
863 status = ocfs2_read_quota_block(sb_dqopt(sb)->files[dquot->dq_type], in ocfs2_local_write_dquot()
870 status = ocfs2_modify_bh(sb_dqopt(sb)->files[dquot->dq_type], bh, in ocfs2_local_write_dquot()
1124 static int ocfs2_create_local_dquot(struct dquot *dquot) in ocfs2_create_local_dquot() argument
1126 struct super_block *sb = dquot->dq_sb; in ocfs2_create_local_dquot()
1127 int type = dquot->dq_type; in ocfs2_create_local_dquot()
1130 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_create_local_dquot()
1146 status = ocfs2_local_write_dquot(dquot); in ocfs2_create_local_dquot()
1164 static int ocfs2_local_read_dquot(struct dquot *dquot) in ocfs2_local_read_dquot() argument
1168 mlog_entry("id=%u, type=%d\n", dquot->dq_id, dquot->dq_type); in ocfs2_local_read_dquot()
1170 status = ocfs2_global_read_dquot(dquot); in ocfs2_local_read_dquot()
1177 status = ocfs2_create_local_dquot(dquot); in ocfs2_local_read_dquot()
1192 static int ocfs2_local_release_dquot(struct dquot *dquot) in ocfs2_local_release_dquot() argument
1195 int type = dquot->dq_type; in ocfs2_local_release_dquot()
1196 struct ocfs2_dquot *od = OCFS2_DQUOT(dquot); in ocfs2_local_release_dquot()
1197 struct super_block *sb = dquot->dq_sb; in ocfs2_local_release_dquot()
1204 status = ocfs2_global_release_dquot(dquot); in ocfs2_local_release_dquot()
1235 clear_bit(DQ_READ_B, &dquot->dq_flags); in ocfs2_local_release_dquot()