diff options
author | Jan Kara <jack@suse.cz> | 2008-11-25 15:31:34 +0100 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 08:40:25 -0800 |
commit | 157091a2c3cdc71422cbc71eace205cf1b9f2200 (patch) | |
tree | 4d941f73fb8899a3701d77b6484a271a3dc6083a /fs/ext3 | |
parent | 4103003b3abb85af9dec9e60616ae086c2bcb4c9 (diff) | |
download | op-kernel-dev-157091a2c3cdc71422cbc71eace205cf1b9f2200.zip op-kernel-dev-157091a2c3cdc71422cbc71eace205cf1b9f2200.tar.gz |
ext3: Add default allocation routines for quota structures
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ext3')
-rw-r--r-- | fs/ext3/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 250ec53..c22d014 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -713,7 +713,9 @@ static struct dquot_operations ext3_quota_operations = { .acquire_dquot = ext3_acquire_dquot, .release_dquot = ext3_release_dquot, .mark_dirty = ext3_mark_dquot_dirty, - .write_info = ext3_write_info + .write_info = ext3_write_info, + .alloc_dquot = dquot_alloc, + .destroy_dquot = dquot_destroy, }; static struct quotactl_ops ext3_qctl_operations = { |