diff options
author | Jan Kara <jack@suse.cz> | 2008-09-21 23:17:53 +0200 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 08:36:58 -0800 |
commit | cf770c137122b78470a67ebd5498947869a09197 (patch) | |
tree | c1f9af3927752e8aef3e0ca45facc39ae6945258 /fs/quota_v1.c | |
parent | ca785ec66b991e9ca74dd9840fc014487ad095e1 (diff) | |
download | linux-3.10-cf770c137122b78470a67ebd5498947869a09197.tar.gz linux-3.10-cf770c137122b78470a67ebd5498947869a09197.tar.bz2 linux-3.10-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 'fs/quota_v1.c')
-rw-r--r-- | fs/quota_v1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/quota_v1.c b/fs/quota_v1.c index 3e078eee564..b4af1c69ad1 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"); |