All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen: reduce severity of message about using v1 grant tables.
@ 2009-12-02 19:28 Ian Campbell
  2009-12-02 19:33 ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 12+ messages in thread
From: Ian Campbell @ 2009-12-02 19:28 UTC (permalink / raw)
  To: xen-devel; +Cc: Steven Smith, Jeremy Fitzhardinge, Ian Campbell, Ian Campbell

From: Ian Campbell <ijc@hellion.org.uk>

It's hardly the end of the world...

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Steven Smith <Steven.Smith@eu.citrix.com>
---
 drivers/xen/grant-table.c |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c
index 2240adf..85ce951 100644
--- a/drivers/xen/grant-table.c
+++ b/drivers/xen/grant-table.c
@@ -699,21 +699,22 @@ static void gnttab_request_version(void)
 
 	gsv.version = 2;
 	rc = HYPERVISOR_grant_table_op(GNTTABOP_set_version, &gsv, 1);
-	if (rc == 0) {
+	if (rc == 0)
 		grant_table_version = 2;
-		printk(KERN_NOTICE "Using V2 grant tables.\n");
-	} else {
+	else {
 		if (grant_table_version == 2) {
-			/* If we've already used version 2 features,
-			   but then suddenly discover that they're not
-			   available (e.g. migrating to an older
-			   version of Xen), almost unbounded badness
-			   can happen. */
+			/*
+			 * If we've already used version 2 features,
+			 * but then suddenly discover that they're not
+			 * available (e.g. migrating to an older
+			 * version of Xen), almost unbounded badness
+			 * can happen.
+			 */
 			panic("we need grant tables version 2, but only version 1 is available");
 		}
 		grant_table_version = 1;
-		printk(KERN_WARNING "Using legacy V1 grant tables; upgrade to a newer version of Xen.\n");
 	}
+	printk(KERN_INFO "Grant tables using version %d layout.\n", grant_table_version);
 }
 
 static int gnttab_map(unsigned int start_idx, unsigned int end_idx)
-- 
1.6.5.3

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2009-12-03 21:23 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-02 19:28 [PATCH] xen: reduce severity of message about using v1 grant tables Ian Campbell
2009-12-02 19:33 ` Jeremy Fitzhardinge
2009-12-02 19:54   ` Ian Campbell
2009-12-03 10:28     ` Ian Campbell
2009-12-03 12:01       ` Steven Smith
2009-12-03 12:15         ` Ian Campbell
2009-12-03 14:47           ` Steven Smith
2009-12-03 20:15           ` Jeremy Fitzhardinge
2009-12-03 21:22             ` Ian Campbell
2009-12-03 20:13         ` Jeremy Fitzhardinge
2009-12-03 21:23           ` Ian Campbell
2009-12-03 20:10       ` Jeremy Fitzhardinge

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.