Searched refs:qf_inode (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/kernel/fs/f2fs/ |
| H A D | super.c | 2487 struct inode *qf_inode; in f2fs_quota_enable() local 2497 qf_inode = f2fs_iget(sb, qf_inum); in f2fs_quota_enable() 2498 if (IS_ERR(qf_inode)) { in f2fs_quota_enable() 2500 return PTR_ERR(qf_inode); in f2fs_quota_enable() 2504 qf_inode->i_flags |= S_NOQUOTA; in f2fs_quota_enable() 2505 err = dquot_load_quota_inode(qf_inode, type, format_id, flags); in f2fs_quota_enable() 2506 iput(qf_inode); in f2fs_quota_enable()
|
| /OK3568_Linux_fs/kernel/fs/ext4/ |
| H A D | super.c | 6381 struct inode *qf_inode; in ext4_quota_enable() local 6393 qf_inode = ext4_iget(sb, qf_inums[type], EXT4_IGET_SPECIAL); in ext4_quota_enable() 6394 if (IS_ERR(qf_inode)) { in ext4_quota_enable() 6396 return PTR_ERR(qf_inode); in ext4_quota_enable() 6400 qf_inode->i_flags |= S_NOQUOTA; in ext4_quota_enable() 6401 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_QUOTA); in ext4_quota_enable() 6402 err = dquot_load_quota_inode(qf_inode, type, format_id, flags); in ext4_quota_enable() 6404 lockdep_set_quota_inode(qf_inode, I_DATA_SEM_NORMAL); in ext4_quota_enable() 6405 iput(qf_inode); in ext4_quota_enable()
|