From: Al Viro Date: Mon, 19 Dec 2011 01:17:41 +0000 (-0500) Subject: vfs: pipe.c is really non-modular X-Git-Tag: v3.3-rc1~170^2~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84b92d39f98f669a3073168f88692782aec525a8;p=platform%2Fkernel%2Flinux-3.10.git 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 --- diff --git a/fs/pipe.c b/fs/pipe.c index 4065f07..f0e485d 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -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);