diff options
author | Jan Kara <jack@suse.cz> | 2008-11-25 09:31:32 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:40:25 -0500 |
commit | 7d9056ba20ebed6e3937a2e23183f6117919cb00 (patch) | |
tree | 3aefa0f187630fdbdefcec9e726155f2678cd1ab /fs/dquot.c | |
parent | 5cd9d5bb86daf632a40f90e2321ea9379e42f073 (diff) |
quota: Export dquot_alloc() and dquot_destroy() functions
These are default functions for creating and destroying quota structures
and they should be used from filesystems.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/dquot.c')
-rw-r--r-- | fs/dquot.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/dquot.c b/fs/dquot.c index 075dc76904e7..61bfff64e5af 100644 --- a/fs/dquot.c +++ b/fs/dquot.c | |||
@@ -413,10 +413,11 @@ out_dqlock: | |||
413 | return ret; | 413 | return ret; |
414 | } | 414 | } |
415 | 415 | ||
416 | static void dquot_destroy(struct dquot *dquot) | 416 | void dquot_destroy(struct dquot *dquot) |
417 | { | 417 | { |
418 | kmem_cache_free(dquot_cachep, dquot); | 418 | kmem_cache_free(dquot_cachep, dquot); |
419 | } | 419 | } |
420 | EXPORT_SYMBOL(dquot_destroy); | ||
420 | 421 | ||
421 | static inline void do_destroy_dquot(struct dquot *dquot) | 422 | static inline void do_destroy_dquot(struct dquot *dquot) |
422 | { | 423 | { |
@@ -668,10 +669,11 @@ we_slept: | |||
668 | spin_unlock(&dq_list_lock); | 669 | spin_unlock(&dq_list_lock); |
669 | } | 670 | } |
670 | 671 | ||
671 | static struct dquot *dquot_alloc(struct super_block *sb, int type) | 672 | struct dquot *dquot_alloc(struct super_block *sb, int type) |
672 | { | 673 | { |
673 | return kmem_cache_zalloc(dquot_cachep, GFP_NOFS); | 674 | return kmem_cache_zalloc(dquot_cachep, GFP_NOFS); |
674 | } | 675 | } |
676 | EXPORT_SYMBOL(dquot_alloc); | ||
675 | 677 | ||
676 | static struct dquot *get_empty_dquot(struct super_block *sb, int type) | 678 | static struct dquot *get_empty_dquot(struct super_block *sb, int type) |
677 | { | 679 | { |