Commit 6ea3bf5e authored by Sean Neakums's avatar Sean Neakums Committed by Linus Torvalds

[PATCH] kill UDF registration/unregistration messages

This patch kills two printks from UDF that announce its registration and
unregistration.  Since one can determine which filesystems are present by
examining /proc/filesystems, these messages strike me as noise.
Signed-off-by: default avatarSean Neakums <sneakums@zork.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent d4eb396b
......@@ -194,7 +194,6 @@ struct udf_options
static int __init init_udf_fs(void)
{
int err;
printk(KERN_NOTICE "udf: registering filesystem\n");
err = init_inodecache();
if (err)
goto out1;
......@@ -210,7 +209,6 @@ static int __init init_udf_fs(void)
static void __exit exit_udf_fs(void)
{
printk(KERN_NOTICE "udf: unregistering filesystem\n");
unregister_filesystem(&udf_fstype);
destroy_inodecache();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment