diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-05-19 07:16:45 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-05-24 08:10:17 -0400 |
commit | 287a80958cf63fc5c68d5bf6e89a3669dd66234a (patch) | |
tree | 8e6883881709ffbbe3b1d6cb7a5b4dcef3428380 /include/linux/quotaops.h | |
parent | 123e9caf1e85008ab7eb5f6cd58c44f9a5d73b2b (diff) |
quota: rename default quotactl methods to dquot_
Follow the dquot_* style used elsewhere in dquot.c.
[Jan Kara: Fixed up missing conversion of ext2]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/linux/quotaops.h')
-rw-r--r-- | include/linux/quotaops.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 84b8dbf59c03..0c77cd8d2822 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -66,21 +66,21 @@ int dquot_mark_dquot_dirty(struct dquot *dquot); | |||
66 | 66 | ||
67 | int dquot_file_open(struct inode *inode, struct file *file); | 67 | int dquot_file_open(struct inode *inode, struct file *file); |
68 | 68 | ||
69 | int vfs_quota_on(struct super_block *sb, int type, int format_id, | 69 | int dquot_quota_on(struct super_block *sb, int type, int format_id, |
70 | char *path); | 70 | char *path); |
71 | int vfs_quota_enable(struct inode *inode, int type, int format_id, | 71 | int dquot_enable(struct inode *inode, int type, int format_id, |
72 | unsigned int flags); | 72 | unsigned int flags); |
73 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, | 73 | int dquot_quota_on_path(struct super_block *sb, int type, int format_id, |
74 | struct path *path); | 74 | struct path *path); |
75 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, | 75 | int dquot_quota_on_mount(struct super_block *sb, char *qf_name, |
76 | int format_id, int type); | 76 | int format_id, int type); |
77 | int vfs_quota_off(struct super_block *sb, int type); | 77 | int dquot_quota_off(struct super_block *sb, int type); |
78 | int vfs_quota_sync(struct super_block *sb, int type, int wait); | 78 | int dquot_quota_sync(struct super_block *sb, int type, int wait); |
79 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 79 | int dquot_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
80 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 80 | int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
81 | int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, | 81 | int dquot_get_dqblk(struct super_block *sb, int type, qid_t id, |
82 | struct fs_disk_quota *di); | 82 | struct fs_disk_quota *di); |
83 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, | 83 | int dquot_set_dqblk(struct super_block *sb, int type, qid_t id, |
84 | struct fs_disk_quota *di); | 84 | struct fs_disk_quota *di); |
85 | 85 | ||
86 | int __dquot_transfer(struct inode *inode, struct dquot **transfer_to); | 86 | int __dquot_transfer(struct inode *inode, struct dquot **transfer_to); |
@@ -151,7 +151,7 @@ static inline unsigned sb_any_quota_active(struct super_block *sb) | |||
151 | * Operations supported for diskquotas. | 151 | * Operations supported for diskquotas. |
152 | */ | 152 | */ |
153 | extern const struct dquot_operations dquot_operations; | 153 | extern const struct dquot_operations dquot_operations; |
154 | extern const struct quotactl_ops vfs_quotactl_ops; | 154 | extern const struct quotactl_ops dquot_quotactl_ops; |
155 | 155 | ||
156 | #else | 156 | #else |
157 | 157 | ||