diff options
author | Jan Kara <jack@suse.cz> | 2014-10-08 18:35:31 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2015-01-30 12:51:10 +0100 |
commit | aaa3daed156ff3c6acb28c8b18028f8b57d6c91b (patch) | |
tree | 1293cc79bf3e4c7afae7a1a17b308b5411e3f130 | |
parent | 664dbd5fe5485ccb20dbec0081c1033308999220 (diff) | |
download | op-kernel-dev-aaa3daed156ff3c6acb28c8b18028f8b57d6c91b.zip op-kernel-dev-aaa3daed156ff3c6acb28c8b18028f8b57d6c91b.tar.gz |
quota: Remove quota_on_meta callback
There are no more users for quota_on_meta callback. Just remove it.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r-- | fs/quota/quota.c | 5 | ||||
-rw-r--r-- | include/linux/quota.h | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/fs/quota/quota.c b/fs/quota/quota.c index ce78a70..d14a799 100644 --- a/fs/quota/quota.c +++ b/fs/quota/quota.c @@ -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, struct path *path) { - if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_on_meta && - !sb->s_qcop->quota_enable) + if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable) 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) return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type)); if (IS_ERR(path)) diff --git a/include/linux/quota.h b/include/linux/quota.h index 4da497b..0938159 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h @@ -369,7 +369,6 @@ struct qc_dqblk { /* Operations handling requests from userspace */ struct quotactl_ops { 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_enable)(struct super_block *, unsigned int); int (*quota_disable)(struct super_block *, unsigned int); |