From: Konrad Rzeszutek Wilk <konrad@kernel.org>
To: Dario Faggioli <dario.faggioli@citrix.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Keir Fraser <keir.xen@gmail.com>,
Ian Campbell <Ian.Campbell@citrix.com>,
xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH v2] xen: print "debug=y|n" during hypervisor startup
Date: Wed, 30 Jan 2013 16:38:15 -0500 [thread overview]
Message-ID: <20130130213814.GE1885@konrad-lan.dumpdata.com> (raw)
In-Reply-To: <ed5b9b9fffc61d70a99a.1359556304@Solace>
On Wed, Jan 30, 2013 at 03:31:44PM +0100, Dario Faggioli wrote:
> So that we can easily figure out whether or not we are running a
> debug build of Xen (e.g., via `xl dmesg').
>
> Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> ---
> Changes from v1:
> * moved the #ifndef-ery around variable definition;
> * repositioned the "debug=%c" outside of the 'compiled-by' section.
>
> diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c
> --- a/xen/drivers/char/console.c
> +++ b/xen/drivers/char/console.c
> @@ -577,6 +577,11 @@ void __init console_init_preirq(void)
> {
> char *p;
> int sh;
> +#ifndef NDEBUG
> + char debug = 'y';
> +#else
> + char debug = 'n';
> +#endif
>
> serial_init_preirq();
>
> @@ -608,10 +613,10 @@ void __init console_init_preirq(void)
> spin_lock(&console_lock);
> __putstr(xen_banner());
> spin_unlock(&console_lock);
> - printk("Xen version %d.%d%s (%s@%s) (%s) %s\n",
> + printk("Xen version %d.%d%s (%s@%s) (%s) debug=%c %s\n",
> xen_major_version(), xen_minor_version(), xen_extra_version(),
> xen_compile_by(), xen_compile_domain(),
> - xen_compiler(), xen_compile_date());
> + xen_compiler(), debug, xen_compile_date());
> printk("Latest ChangeSet: %s\n", xen_changeset());
>
> if ( opt_sync_console )
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
>
prev parent reply other threads:[~2013-01-30 21:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-30 14:31 [PATCH v2] xen: print "debug=y|n" during hypervisor startup Dario Faggioli
2013-01-30 21:38 ` Konrad Rzeszutek Wilk [this message]
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=20130130213814.GE1885@konrad-lan.dumpdata.com \
--to=konrad@kernel.org \
--cc=Ian.Campbell@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=dario.faggioli@citrix.com \
--cc=keir.xen@gmail.com \
--cc=xen-devel@lists.xen.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 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.