diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-18 20:17:41 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:41 -0500 |
commit | 84b92d39f98f669a3073168f88692782aec525a8 (patch) | |
tree | e228e46ca564ee41cc78d85e451b1659dcada2c4 | |
parent | 6b520e0565422966cdf1c3759bd73df77b0f248c (diff) |
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>
-rw-r--r-- | fs/pipe.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -1290,11 +1290,4 @@ static int __init init_pipe_fs(void) | |||
1290 | return err; | 1290 | return err; |
1291 | } | 1291 | } |
1292 | 1292 | ||
1293 | static void __exit exit_pipe_fs(void) | ||
1294 | { | ||
1295 | kern_unmount(pipe_mnt); | ||
1296 | unregister_filesystem(&pipe_fs_type); | ||
1297 | } | ||
1298 | |||
1299 | fs_initcall(init_pipe_fs); | 1293 | fs_initcall(init_pipe_fs); |
1300 | module_exit(exit_pipe_fs); | ||