[PATCH] kill UDF registration/unregistration messages

From: Sean Neakums
Date: Mon Aug 02 2004 - 06:36:55 EST


Ben,

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.

Patch is against 2.6.8-rc2-mm2.


Signed-off-by: Sean Neakums <sneakums@xxxxxxxx>

--- S8-rc2-mm2/fs/udf/super.c~ 2004-07-30 20:32:12.000000000 +0100
+++ S8-rc2-mm2/fs/udf/super.c 2004-08-02 12:23:36.000000000 +0100
@@ -194,7 +194,6 @@
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 void __exit exit_udf_fs(void)
{
- printk(KERN_NOTICE "udf: unregistering filesystem\n");
unregister_filesystem(&udf_fstype);
destroy_inodecache();
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/