diff options
author | Jan Kara <jack@suse.cz> | 2008-09-22 07:54:49 +0400 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 19:40:21 +0300 |
commit | 1ccd14b9c271c1ac6eec5c5ec5def433100e7248 (patch) | |
tree | 959756aa5b68c568a18697464df3f0acdd0387cf /fs/Makefile | |
parent | cf770c137122b78470a67ebd5498947869a09197 (diff) | |
download | linux-1ccd14b9c271c1ac6eec5c5ec5def433100e7248.tar.xz |
quota: Split off quota tree handling into a separate file
There is going to be a new version of quota format having 64-bit
quota limits and a new quota format for OCFS2. They are both
going to use the same tree structure as VFSv0 quota format. So
split out tree handling into a separate file and make size of
leaf blocks, amount of space usable in each block (needed for
checksumming) and structures contained in them configurable
so that the code can be shared.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile index e6f423d1d228..c830611550d3 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -54,6 +54,7 @@ obj-$(CONFIG_GENERIC_ACL) += generic_acl.o obj-$(CONFIG_QUOTA) += dquot.o obj-$(CONFIG_QFMT_V1) += quota_v1.o obj-$(CONFIG_QFMT_V2) += quota_v2.o +obj-$(CONFIG_QUOTA_TREE) += quota_tree.o obj-$(CONFIG_QUOTACTL) += quota.o obj-$(CONFIG_PROC_FS) += proc/ |