Lines Matching refs:qf_inode
2782 struct inode *qf_inode; in f2fs_quota_enable() local
2793 qf_inode = f2fs_iget(sb, qf_inum); in f2fs_quota_enable()
2794 if (IS_ERR(qf_inode)) { in f2fs_quota_enable()
2796 return PTR_ERR(qf_inode); in f2fs_quota_enable()
2800 inode_lock(qf_inode); in f2fs_quota_enable()
2801 qf_inode->i_flags |= S_NOQUOTA; in f2fs_quota_enable()
2803 if ((F2FS_I(qf_inode)->i_flags & qf_flag) != qf_flag) { in f2fs_quota_enable()
2804 F2FS_I(qf_inode)->i_flags |= qf_flag; in f2fs_quota_enable()
2805 f2fs_set_inode_flags(qf_inode); in f2fs_quota_enable()
2807 inode_unlock(qf_inode); in f2fs_quota_enable()
2809 err = dquot_load_quota_inode(qf_inode, type, format_id, flags); in f2fs_quota_enable()
2810 iput(qf_inode); in f2fs_quota_enable()