Home
last modified time | relevance | path

Searched refs:qf_inode (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/fs/f2fs/
Dsuper.c1735 struct inode *qf_inode; in f2fs_quota_enable() local
1745 qf_inode = f2fs_iget(sb, qf_inum); in f2fs_quota_enable()
1746 if (IS_ERR(qf_inode)) { in f2fs_quota_enable()
1749 return PTR_ERR(qf_inode); in f2fs_quota_enable()
1753 qf_inode->i_flags |= S_NOQUOTA; in f2fs_quota_enable()
1754 err = dquot_enable(qf_inode, type, format_id, flags); in f2fs_quota_enable()
1755 iput(qf_inode); in f2fs_quota_enable()
/Linux-v4.19/fs/ext4/
Dsuper.c5646 struct inode *qf_inode; in ext4_quota_enable() local
5658 qf_inode = ext4_iget(sb, qf_inums[type]); in ext4_quota_enable()
5659 if (IS_ERR(qf_inode)) { in ext4_quota_enable()
5661 return PTR_ERR(qf_inode); in ext4_quota_enable()
5665 qf_inode->i_flags |= S_NOQUOTA; in ext4_quota_enable()
5666 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA); in ext4_quota_enable()
5667 err = dquot_enable(qf_inode, type, format_id, flags); in ext4_quota_enable()
5668 iput(qf_inode); in ext4_quota_enable()
5670 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL); in ext4_quota_enable()