diff options
author | Gerard Snitselaar <dev@snitselaar.org> | 2012-03-16 18:36:18 +0000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-03-22 13:48:55 -0500 |
commit | 1c2ccc66bcef992bec7bad6d52cade66d632d7fb (patch) | |
tree | 621a3e4d527d18bc6bfb2667baf29f5a9607706a /fs/xfs/xfs_dquot.c | |
parent | f074211f6041305b645669464343d504f4e6a290 (diff) |
fs: xfs: fix section mismatch in linux-next
xfs_qm_exit() is called in init_xfs_fs().
Signed-off-by: Gerard Snitselaar <dev@snitselaar.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dquot.c')
-rw-r--r-- | fs/xfs/xfs_dquot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c index 4be16a0cbe5..1155208fa83 100644 --- a/fs/xfs/xfs_dquot.c +++ b/fs/xfs/xfs_dquot.c @@ -1065,7 +1065,7 @@ out: return -ENOMEM; } -void __exit +void xfs_qm_exit(void) { kmem_zone_destroy(xfs_qm_dqtrxzone); |