dect
/
linux-2.6
Archived
13
0
Fork 0

vfs: pipe.c is really non-modular

... so no exitcalls there.  Not much would work if pipe(2) would stop
working, after all...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2011-12-18 20:17:41 -05:00
parent 6b520e0565
commit 84b92d39f9
1 changed files with 0 additions and 7 deletions

View File

@ -1290,11 +1290,4 @@ static int __init init_pipe_fs(void)
return err;
}
static void __exit exit_pipe_fs(void)
{
kern_unmount(pipe_mnt);
unregister_filesystem(&pipe_fs_type);
}
fs_initcall(init_pipe_fs);
module_exit(exit_pipe_fs);