diff options
author | Jan Kara <jack@suse.cz> | 2014-12-16 12:03:51 +0100 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2015-03-04 16:06:38 +0100 |
commit | 5eacb2ac029161d94969a511e0adf7dca28cda1f (patch) | |
tree | f49c47630dbd2790ae4d297f745f6ab359525ed9 /include/linux/quotaops.h | |
parent | 59b6ba699043e0f55d4057cf2ae79d9c1171bc58 (diff) | |
download | linux-5eacb2ac029161d94969a511e0adf7dca28cda1f.tar.gz linux-5eacb2ac029161d94969a511e0adf7dca28cda1f.tar.bz2 linux-5eacb2ac029161d94969a511e0adf7dca28cda1f.zip |
quota: Make ->set_info use structure with neccesary info to VFS and XFS
Change ->set_info to take new qc_info structure which contains all the
necessary information both for XFS and VFS. Convert Q_SETINFO handler
to use this structure.
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/linux/quotaops.h')
-rw-r--r-- | include/linux/quotaops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 6509a29523e2..9f4b07ba9e8c 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h @@ -96,7 +96,7 @@ int dquot_quota_off(struct super_block *sb, int type); int dquot_writeback_dquots(struct super_block *sb, int type); int dquot_quota_sync(struct super_block *sb, int type); int dquot_get_state(struct super_block *sb, struct qc_state *state); -int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); +int dquot_set_dqinfo(struct super_block *sb, int type, struct qc_info *ii); int dquot_get_dqblk(struct super_block *sb, struct kqid id, struct qc_dqblk *di); int dquot_set_dqblk(struct super_block *sb, struct kqid id, |