From: Christoph Hellwig <hch@lst.de>
This one is a little funny. The SGI trees don't show this issue because dmapi
and quota are separate modules so they must be unloaded before xfs_fs_exit can
be called at all.
So let's move the exitcalls for them in mainline first to simulate that
behaviour.
STATIC void __exit
exit_xfs_fs( void )
{
- unregister_filesystem(&xfs_fs_type);
- xfs_cleanup();
vfs_exitquota();
vfs_exitdmapi();
+ unregister_filesystem(&xfs_fs_type);
+ xfs_cleanup();
pagebuf_terminate();
destroy_inodecache();
ktrace_uninit();