From: Wei Liu <wei.liu2@citrix.com>
To: Xen-devel <xen-devel@lists.xenproject.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Wei Liu <wei.liu2@citrix.com>, Jan Beulich <jbeulich@suse.com>
Subject: [PATCH v3 2/3] console: use warning infrastructure for sync console warning
Date: Mon, 20 Jun 2016 17:30:24 +0100 [thread overview]
Message-ID: <1466440225-4161-3-git-send-email-wei.liu2@citrix.com> (raw)
In-Reply-To: <1466440225-4161-1-git-send-email-wei.liu2@citrix.com>
Move the warning text to a static variable and marked that as initconst
data. Call warning_add in console_init_preirq. Finally remove all
unused bits.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
---
xen/drivers/char/console.c | 38 ++++++++++----------------------------
1 file changed, 10 insertions(+), 28 deletions(-)
diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c
index f4f6141..6c771dc 100644
--- a/xen/drivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -18,7 +18,6 @@
#include <xen/serial.h>
#include <xen/softirq.h>
#include <xen/keyhandler.h>
-#include <xen/delay.h>
#include <xen/guest_access.h>
#include <xen/watchdog.h>
#include <xen/shutdown.h>
@@ -29,6 +28,7 @@
#include <asm/div64.h>
#include <xen/hypercall.h> /* for do_console_io */
#include <xen/early_printk.h>
+#include <xen/warning.h>
/* console: comma-separated list of console outputs. */
static char __initdata opt_console[30] = OPT_CONSOLE_STR;
@@ -44,6 +44,14 @@ string_param("conswitch", opt_conswitch);
/* sync_console: force synchronous console output (useful for debugging). */
static bool_t __initdata opt_sync_console;
boolean_param("sync_console", opt_sync_console);
+static const char __initconst *warning_sync_console =
+ "**********************************************\n"
+ "******* WARNING: CONSOLE OUTPUT IS SYNCHRONOUS\n"
+ "******* This option is intended to aid debugging of Xen by ensuring\n"
+ "******* that all output is synchronously delivered on the serial line.\n"
+ "******* However it can introduce SIGNIFICANT latencies and affect\n"
+ "******* timekeeping. It is NOT recommended for production use!\n"
+ "**********************************************\n";
/* console_to_ring: send guest (incl. dom 0) console data to console ring. */
static bool_t __read_mostly opt_console_to_ring;
@@ -739,6 +747,7 @@ void __init console_init_preirq(void)
serial_start_sync(sercon_handle);
add_taint(TAINT_SYNC_CONSOLE);
printk("Console output is synchronous.\n");
+ warning_add(warning_sync_console);
}
}
@@ -786,8 +795,6 @@ void __init console_init_postirq(void)
void __init console_endboot(void)
{
- int i, j;
-
printk("Std. Loglevel: %s", loglvl_str(xenlog_lower_thresh));
if ( xenlog_upper_thresh != xenlog_lower_thresh )
printk(" (Rate-limited: %s)", loglvl_str(xenlog_upper_thresh));
@@ -796,31 +803,6 @@ void __init console_endboot(void)
printk(" (Rate-limited: %s)", loglvl_str(xenlog_guest_upper_thresh));
printk("\n");
- if ( opt_sync_console )
- {
- printk("**********************************************\n");
- printk("******* WARNING: CONSOLE OUTPUT IS SYNCHRONOUS\n");
- printk("******* This option is intended to aid debugging "
- "of Xen by ensuring\n");
- printk("******* that all output is synchronously delivered "
- "on the serial line.\n");
- printk("******* However it can introduce SIGNIFICANT latencies "
- "and affect\n");
- printk("******* timekeeping. It is NOT recommended for "
- "production use!\n");
- printk("**********************************************\n");
- for ( i = 0; i < 3; i++ )
- {
- printk("%d... ", 3-i);
- for ( j = 0; j < 100; j++ )
- {
- process_pending_softirqs();
- mdelay(10);
- }
- }
- printk("\n");
- }
-
video_endboot();
/*
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-06-20 16:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-20 16:30 [PATCH v3 0/3] Make hvm_fep available to non-debug build Wei Liu
2016-06-20 16:30 ` [PATCH v3 1/3] xen: add warning infrastructure Wei Liu
2016-06-22 15:35 ` Jan Beulich
2016-06-23 10:37 ` Wei Liu
2016-06-23 11:17 ` Wei Liu
2016-06-23 11:21 ` Andrew Cooper
2016-06-23 12:18 ` Jan Beulich
2016-06-20 16:30 ` Wei Liu [this message]
2016-06-22 15:37 ` [PATCH v3 2/3] console: use warning infrastructure for sync console warning Jan Beulich
2016-06-23 10:45 ` Wei Liu
2016-06-20 16:30 ` [PATCH v3 3/3] xen: make available hvm_fep to non-debug build as well Wei Liu
2016-06-22 15:42 ` Jan Beulich
2016-06-23 10:50 ` Wei Liu
2016-06-23 12:20 ` Jan Beulich
2016-06-23 12:44 ` Wei Liu
2016-06-23 12:48 ` Andrew Cooper
2016-06-23 12:50 ` Wei Liu
2016-06-23 13:05 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1466440225-4161-3-git-send-email-wei.liu2@citrix.com \
--to=wei.liu2@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).