Searched refs:qf_inode (Results 1 – 2 of 2) sorted by relevance
| /Linux-v6.1/fs/f2fs/ |
| D | super.c | 2630 struct inode *qf_inode; in f2fs_quota_enable() local 2640 qf_inode = f2fs_iget(sb, qf_inum); in f2fs_quota_enable() 2641 if (IS_ERR(qf_inode)) { in f2fs_quota_enable() 2643 return PTR_ERR(qf_inode); in f2fs_quota_enable() 2647 qf_inode->i_flags |= S_NOQUOTA; in f2fs_quota_enable() 2648 err = dquot_load_quota_inode(qf_inode, type, format_id, flags); in f2fs_quota_enable() 2649 iput(qf_inode); in f2fs_quota_enable()
|
| /Linux-v6.1/fs/ext4/ |
| D | super.c | 6893 struct inode *qf_inode; in ext4_quota_enable() local 6905 qf_inode = ext4_iget(sb, qf_inums[type], EXT4_IGET_SPECIAL); in ext4_quota_enable() 6906 if (IS_ERR(qf_inode)) { in ext4_quota_enable() 6908 return PTR_ERR(qf_inode); in ext4_quota_enable() 6912 qf_inode->i_flags |= S_NOQUOTA; in ext4_quota_enable() 6913 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA); in ext4_quota_enable() 6914 err = dquot_load_quota_inode(qf_inode, type, format_id, flags); in ext4_quota_enable() 6916 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL); in ext4_quota_enable() 6917 iput(qf_inode); in ext4_quota_enable()
|