diff options
Diffstat (limited to 'include/linux/quotaops.h')
| -rw-r--r-- | include/linux/quotaops.h | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index f23538a6e411..df73258cca47 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h @@ -98,9 +98,9 @@ int dquot_quota_sync(struct super_block *sb, int type);  int dquot_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii);  int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii);  int dquot_get_dqblk(struct super_block *sb, struct kqid id, -		struct fs_disk_quota *di); +		struct qc_dqblk *di);  int dquot_set_dqblk(struct super_block *sb, struct kqid id, -		struct fs_disk_quota *di); +		struct qc_dqblk *di);  int __dquot_transfer(struct inode *inode, struct dquot **transfer_to);  int dquot_transfer(struct inode *inode, struct iattr *iattr); @@ -166,6 +166,7 @@ static inline bool sb_has_quota_active(struct super_block *sb, int type)   */  extern const struct dquot_operations dquot_operations;  extern const struct quotactl_ops dquot_quotactl_ops; +extern const struct quotactl_ops dquot_quotactl_sysfile_ops;  #else @@ -386,4 +387,6 @@ static inline void dquot_release_reservation_block(struct inode *inode,  	__dquot_free_space(inode, nr << inode->i_blkbits, DQUOT_SPACE_RESERVE);  } +unsigned int qtype_enforce_flag(int type); +  #endif /* _LINUX_QUOTAOPS_ */ |