From: Guenter Roeck <guenter.roeck@ericsson.com>
To: Bastien ROUCARIES <roucaries.bastien@gmail.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"penberg@cs.helsinki.fi" <penberg@cs.helsinki.fi>,
"mingo@redhat.com" <mingo@redhat.com>,
"x86@kernel.org" <x86@kernel.org>
Subject: Re: [PATCH v3] x86: Do not write into VGA memory space if there is no VGA device in the system
Date: Mon, 26 Apr 2010 09:11:20 -0700 [thread overview]
Message-ID: <20100426161120.GA18509@ericsson.com> (raw)
In-Reply-To: <t2o195c7a901004260843k947fdf2cy3b137e3056db8b62@mail.gmail.com>
On Mon, Apr 26, 2010 at 11:43:44AM -0400, Bastien ROUCARIES wrote:
> On Tue, Apr 20, 2010 at 6:16 PM, Guenter Roeck
> <guenter.roeck@ericsson.com> wrote:
> > Ensure that early_printk() does not write into VGA memory space
> > if there is not VGA device in the system.
> >
> > Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
> > ---
> > v3:
> > Changes are now limited to early_printk.c. Functionality is retained, meaning
> > there will still be output on the VGA console before setup_early_printk()
> > is called, but only if a VGA device is known to exist in the system.
> >
> > arch/x86/kernel/early_printk.c | 17 +++++++++++++----
> > 1 files changed, 13 insertions(+), 4 deletions(-)
> >
> > diff --git a/arch/x86/kernel/early_printk.c b/arch/x86/kernel/early_printk.c
> > index b9c830c..783cb25 100644
> > --- a/arch/x86/kernel/early_printk.c
> > +++ b/arch/x86/kernel/early_printk.c
> > @@ -170,10 +170,13 @@ asmlinkage void early_printk(const char *fmt, ...)
> > int n;
> > va_list ap;
> >
> > - va_start(ap, fmt);
> > - n = vscnprintf(buf, sizeof(buf), fmt, ap);
> > - early_console->write(early_console, buf, n);
> > - va_end(ap);
> > + if (early_console && (early_console_initialized ||
> > + boot_params.screen_info.orig_video_isVGA == 1)) {
> > + va_start(ap, fmt);
> > + n = vscnprintf(buf, sizeof(buf), fmt, ap);
> > + early_console->write(early_console, buf, n);
> > + va_end(ap);
> > + }
> > }
>
> Instead to this ugly if why not creating a null early_console (write
> will do nothing) ?
>
> > static inline void early_console_register(struct console *con, int keep_early)
> > @@ -233,6 +236,12 @@ static int __init setup_early_printk(char *buf)
> > #endif
> > buf++;
> > }
> > +
> > + /* If there is no VGA device, don't try to use it as early console. */
> > + if (early_console == &early_vga_console &&
> > + boot_params.screen_info.orig_video_isVGA != 1)
> > + early_console = NULL;
> > +
> > return 0;
> > }
>
> And assign null console as the last console as a fallback ?
>
Sounds good to me. Peter, would that get your approval ?
Guenter
prev parent reply other threads:[~2010-04-26 16:16 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-20 16:16 [PATCH v3] x86: Do not write into VGA memory space if there is no VGA device in the system Guenter Roeck
2010-04-26 9:36 ` Pekka Enberg
2010-04-26 14:05 ` Guenter Roeck
2010-04-26 14:35 ` Pekka Enberg
2010-04-26 14:52 ` H. Peter Anvin
2010-04-26 15:43 ` Bastien ROUCARIES
2010-04-26 16:11 ` Guenter Roeck [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=20100426161120.GA18509@ericsson.com \
--to=guenter.roeck@ericsson.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=penberg@cs.helsinki.fi \
--cc=roucaries.bastien@gmail.com \
--cc=x86@kernel.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