]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xen: Drop un-informative message during boot
authorPunit Agrawal <punit.agrawal@arm.com>
Thu, 20 Jul 2017 11:04:02 +0000 (12:04 +0100)
committerJuergen Gross <jgross@suse.com>
Thu, 27 Jul 2017 17:55:34 +0000 (19:55 +0200)
On systems that are not booted as a Xen domain, the xenfs driver prints
the following message during boot.

[    3.460595] xenfs: not registering filesystem on non-xen platform

As the user chose not to boot a Xen domain, this message does not
provide useful information. Drop this message.

Signed-off-by: Punit Agrawal <punit.agrawal@arm.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/xenfs/super.c

index 967f069385d0cf1fa9933cdeb0f8804dc0324e06..71ddfb4cf61ccfef375a07d6271715e9478c68c6 100644 (file)
@@ -87,7 +87,6 @@ static int __init xenfs_init(void)
        if (xen_domain())
                return register_filesystem(&xenfs_type);
 
-       pr_info("not registering filesystem on non-xen platform\n");
        return 0;
 }