Commit aaa3daed authored by Jan Kara's avatar Jan Kara

quota: Remove quota_on_meta callback

There are no more users for quota_on_meta callback. Just remove it.
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 664dbd5f
...@@ -82,11 +82,8 @@ unsigned int qtype_enforce_flag(int type) ...@@ -82,11 +82,8 @@ unsigned int qtype_enforce_flag(int type)
static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id, static int quota_quotaon(struct super_block *sb, int type, int cmd, qid_t id,
struct path *path) struct path *path)
{ {
if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_on_meta && if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable)
!sb->s_qcop->quota_enable)
return -ENOSYS; return -ENOSYS;
if (sb->s_qcop->quota_on_meta)
return sb->s_qcop->quota_on_meta(sb, type, id);
if (sb->s_qcop->quota_enable) if (sb->s_qcop->quota_enable)
return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type)); return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type));
if (IS_ERR(path)) if (IS_ERR(path))
......
...@@ -369,7 +369,6 @@ struct qc_dqblk { ...@@ -369,7 +369,6 @@ struct qc_dqblk {
/* Operations handling requests from userspace */ /* Operations handling requests from userspace */
struct quotactl_ops { struct quotactl_ops {
int (*quota_on)(struct super_block *, int, int, struct path *); int (*quota_on)(struct super_block *, int, int, struct path *);
int (*quota_on_meta)(struct super_block *, int, int);
int (*quota_off)(struct super_block *, int); int (*quota_off)(struct super_block *, int);
int (*quota_enable)(struct super_block *, unsigned int); int (*quota_enable)(struct super_block *, unsigned int);
int (*quota_disable)(struct super_block *, unsigned int); int (*quota_disable)(struct super_block *, unsigned int);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment