diff options
author | Punit Agrawal <punit.agrawal@arm.com> | 2017-07-20 12:04:02 +0100 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2017-07-27 19:55:34 +0200 |
commit | d02ca074f63ba562cc0786121e92e38c59e6d97f (patch) | |
tree | 9895c4c3005b703a36b658a278fa49ae2cc65fd3 /drivers/xen/xenfs/super.c | |
parent | 96edd61dcf44362d3ef0bed1a5361e0ac7886a63 (diff) | |
download | linux-d02ca074f63ba562cc0786121e92e38c59e6d97f.tar.bz2 |
xen: Drop un-informative message during boot
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>
Diffstat (limited to 'drivers/xen/xenfs/super.c')
-rw-r--r-- | drivers/xen/xenfs/super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/xen/xenfs/super.c b/drivers/xen/xenfs/super.c index 967f069385d0..71ddfb4cf61c 100644 --- a/drivers/xen/xenfs/super.c +++ b/drivers/xen/xenfs/super.c @@ -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; } |