diff options
author | 2008-09-21 23:17:53 +0200 | |
---|---|---|
committer | 2009-01-05 08:36:58 -0800 | |
commit | cf770c137122b78470a67ebd5498947869a09197 (patch) | |
tree | c1f9af3927752e8aef3e0ca45facc39ae6945258 /fs | |
parent | quota: Introduce DQUOT_QUOTA_SYS_FILE flag (diff) | |
download | linux-dev-cf770c137122b78470a67ebd5498947869a09197.tar.xz linux-dev-cf770c137122b78470a67ebd5498947869a09197.zip |
quota: Move quotaio_v[12].h from include/linux/ to fs/
Since these include files are used only by implementation of quota formats,
there's no need to have them in include/linux/.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/quota_v1.c | 3 | ||||
-rw-r--r-- | fs/quota_v2.c | 7 | ||||
-rw-r--r-- | fs/quotaio_v1.h (renamed from include/linux/quotaio_v1.h) | 0 | ||||
-rw-r--r-- | fs/quotaio_v2.h (renamed from include/linux/quotaio_v2.h) | 0 |
4 files changed, 6 insertions, 4 deletions
diff --git a/fs/quota_v1.c b/fs/quota_v1.c index 3e078eee5644..b4af1c69ad16 100644 --- a/fs/quota_v1.c +++ b/fs/quota_v1.c @@ -3,13 +3,14 @@ #include <linux/quota.h> #include <linux/quotaops.h> #include <linux/dqblk_v1.h> -#include <linux/quotaio_v1.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/module.h> #include <asm/byteorder.h> +#include "quotaio_v1.h" + MODULE_AUTHOR("Jan Kara"); MODULE_DESCRIPTION("Old quota format support"); MODULE_LICENSE("GPL"); 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 @@ #include <linux/fs.h> #include <linux/mount.h> #include <linux/dqblk_v2.h> -#include <linux/quotaio_v2.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/module.h> @@ -15,6 +14,8 @@ #include <asm/byteorder.h> +#include "quotaio_v2.h" + MODULE_AUTHOR("Jan Kara"); MODULE_DESCRIPTION("Quota format v2 support"); MODULE_LICENSE("GPL"); @@ -129,8 +130,8 @@ static void mem2diskdqb(struct v2_disk_dqblk *d, struct mem_dqblk *m, qid_t id) d->dqb_isoftlimit = cpu_to_le32(m->dqb_isoftlimit); d->dqb_curinodes = cpu_to_le32(m->dqb_curinodes); d->dqb_itime = cpu_to_le64(m->dqb_itime); - d->dqb_bhardlimit = cpu_to_le32(v2_qbtos(m->dqb_bhardlimit)); - d->dqb_bsoftlimit = cpu_to_le32(v2_qbtos(m->dqb_bsoftlimit)); + d->dqb_bhardlimit = cpu_to_le32(v2_stoqb(m->dqb_bhardlimit)); + d->dqb_bsoftlimit = cpu_to_le32(v2_stoqb(m->dqb_bsoftlimit)); d->dqb_curspace = cpu_to_le64(m->dqb_curspace); d->dqb_btime = cpu_to_le64(m->dqb_btime); d->dqb_id = cpu_to_le32(id); diff --git a/include/linux/quotaio_v1.h b/fs/quotaio_v1.h index 746654b5de70..746654b5de70 100644 --- a/include/linux/quotaio_v1.h +++ b/fs/quotaio_v1.h diff --git a/include/linux/quotaio_v2.h b/fs/quotaio_v2.h index 303d7cbe30d4..303d7cbe30d4 100644 --- a/include/linux/quotaio_v2.h +++ b/fs/quotaio_v2.h |