Home
last modified time | relevance | path

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

/fs/f2fs/
Dsuper.c1939 struct inode *qf_inode; in f2fs_quota_enable() local
1949 qf_inode = f2fs_iget(sb, qf_inum); in f2fs_quota_enable()
1950 if (IS_ERR(qf_inode)) { in f2fs_quota_enable()
1952 return PTR_ERR(qf_inode); in f2fs_quota_enable()
1956 qf_inode->i_flags |= S_NOQUOTA; in f2fs_quota_enable()
1957 err = dquot_enable(qf_inode, type, format_id, flags); in f2fs_quota_enable()
1958 iput(qf_inode); in f2fs_quota_enable()
/fs/ext4/
Dsuper.c5842 struct inode *qf_inode; in ext4_quota_enable() local
5854 qf_inode = ext4_iget(sb, qf_inums[type], EXT4_IGET_SPECIAL); in ext4_quota_enable()
5855 if (IS_ERR(qf_inode)) { in ext4_quota_enable()
5857 return PTR_ERR(qf_inode); in ext4_quota_enable()
5861 qf_inode->i_flags |= S_NOQUOTA; in ext4_quota_enable()
5862 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA); in ext4_quota_enable()
5863 err = dquot_enable(qf_inode, type, format_id, flags); in ext4_quota_enable()
5865 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL); in ext4_quota_enable()
5866 iput(qf_inode); in ext4_quota_enable()