From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936251AbdGTLFD (ORCPT ); Thu, 20 Jul 2017 07:05:03 -0400 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:52022 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935954AbdGTLFB (ORCPT ); Thu, 20 Jul 2017 07:05:01 -0400 From: Punit Agrawal To: linux-kernel@vger.kernel.org Cc: lorenzo.pieralisi@arm.com, sudeep.holla@arm.com, Punit Agrawal , xen-devel@lists.xenproject.org, Boris Ostrovsky , Juergen Gross Subject: [PATCH 4/4] xen: Drop un-informative message during boot Date: Thu, 20 Jul 2017 12:04:02 +0100 Message-Id: <20170720110402.15313-5-punit.agrawal@arm.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170720110402.15313-1-punit.agrawal@arm.com> References: <20170720110402.15313-1-punit.agrawal@arm.com> X-ARM-No-Footer: FoSSMail Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 Cc: Boris Ostrovsky Cc: Juergen Gross --- drivers/xen/xenfs/super.c | 1 - 1 file changed, 1 deletion(-) 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; } -- 2.11.0