diff options
Diffstat (limited to 'fs/quota_v2.c')
-rw-r--r-- | fs/quota_v2.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/quota_v2.c b/fs/quota_v2.c index 51c4717f7c6a..a21d1a7c356a 100644 --- a/fs/quota_v2.c +++ b/fs/quota_v2.c | |||
@@ -6,7 +6,6 @@ | |||
6 | #include <linux/fs.h> | 6 | #include <linux/fs.h> |
7 | #include <linux/mount.h> | 7 | #include <linux/mount.h> |
8 | #include <linux/dqblk_v2.h> | 8 | #include <linux/dqblk_v2.h> |
9 | #include <linux/quotaio_v2.h> | ||
10 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
11 | #include <linux/init.h> | 10 | #include <linux/init.h> |
12 | #include <linux/module.h> | 11 | #include <linux/module.h> |
@@ -15,6 +14,8 @@ | |||
15 | 14 | ||
16 | #include <asm/byteorder.h> | 15 | #include <asm/byteorder.h> |
17 | 16 | ||
17 | #include "quotaio_v2.h" | ||
18 | |||
18 | MODULE_AUTHOR("Jan Kara"); | 19 | MODULE_AUTHOR("Jan Kara"); |
19 | MODULE_DESCRIPTION("Quota format v2 support"); | 20 | MODULE_DESCRIPTION("Quota format v2 support"); |
20 | MODULE_LICENSE("GPL"); | 21 | MODULE_LICENSE("GPL"); |
@@ -129,8 +130,8 @@ static void mem2diskdqb(struct v2_disk_dqblk *d, struct mem_dqblk *m, qid_t id) | |||
129 | d->dqb_isoftlimit = cpu_to_le32(m->dqb_isoftlimit); | 130 | d->dqb_isoftlimit = cpu_to_le32(m->dqb_isoftlimit); |
130 | d->dqb_curinodes = cpu_to_le32(m->dqb_curinodes); | 131 | d->dqb_curinodes = cpu_to_le32(m->dqb_curinodes); |
131 | d->dqb_itime = cpu_to_le64(m->dqb_itime); | 132 | d->dqb_itime = cpu_to_le64(m->dqb_itime); |
132 | d->dqb_bhardlimit = cpu_to_le32(v2_qbtos(m->dqb_bhardlimit)); | 133 | d->dqb_bhardlimit = cpu_to_le32(v2_stoqb(m->dqb_bhardlimit)); |
133 | d->dqb_bsoftlimit = cpu_to_le32(v2_qbtos(m->dqb_bsoftlimit)); | 134 | d->dqb_bsoftlimit = cpu_to_le32(v2_stoqb(m->dqb_bsoftlimit)); |
134 | d->dqb_curspace = cpu_to_le64(m->dqb_curspace); | 135 | d->dqb_curspace = cpu_to_le64(m->dqb_curspace); |
135 | d->dqb_btime = cpu_to_le64(m->dqb_btime); | 136 | d->dqb_btime = cpu_to_le64(m->dqb_btime); |
136 | d->dqb_id = cpu_to_le32(id); | 137 | d->dqb_id = cpu_to_le32(id); |