From: Bin Gao <bin.gao@linux.intel.com>
To: Peter Hurley <peter@hurleysoftware.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
"Stuart R. Anderson" <stuart.r.anderson@intel.com>,
One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>,
Jiri Slaby <jslaby@suse.cz>, Borislav Petkov <bp@suse.de>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 2/2] arch/x86: remove pci uart early console from early_prink.c
Date: Wed, 3 Jun 2015 09:34:47 -0700 [thread overview]
Message-ID: <20150603163447.GA149091@worksta> (raw)
In-Reply-To: <556EF491.8010408@hurleysoftware.com>
On Wed, Jun 03, 2015 at 08:35:29AM -0400, Peter Hurley wrote:
> > +/* x86 uses "earlyprintk=xxx", so we keep the compatibility here */
> > +#ifdef CONFIG_X86
> > +static int __init param_setup_earlycon_x86(char *buf)
> > +{
> > + return param_setup_earlycon(buf);
> > +}
> > +early_param("earlyprintk", param_setup_earlycon_x86);
>
> I'm concerned that this effectively makes earlyprintk= a synonym for
> earlycon=, which may have unforeseen consequences. I'd rather this
> specifically parse for replacement functionality, ie., only command line
> parameters of the form:
>
> earlyprintk=pciserial,...
>
> Regards,
> Peter Hurley
>
Something like this: ?
/*
* x86 uses "earlyprintk=xxx", so we keep the compatibility here.
* But we only handle the earlyprintk=uart8250,pci[32]B:D.F[,options] case.
*/
#ifdef CONFIG_X86
static int __init param_setup_earlycon_x86(char *buf)
{
if (strncmp("uart8250,pci", 12))
return -EINVAL;
return param_setup_earlycon(buf);
}
early_param("earlyprintk", param_setup_earlycon_x86);
Thanks,
Bin
next prev parent reply other threads:[~2015-06-03 16:23 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-29 18:41 [PATCH v5 2/2] arch/x86: remove pci uart early console from early_prink.c Bin Gao
2015-06-02 11:54 ` Ingo Molnar
2015-06-02 19:20 ` Bin Gao
2015-06-02 20:37 ` Yinghai Lu
2015-06-03 3:00 ` Bin Gao
2015-06-02 21:07 ` Thomas Gleixner
2015-06-02 22:43 ` Bin Gao
2015-06-03 0:16 ` Anderson, Stuart R
2015-06-03 3:09 ` Bin Gao
2015-06-03 12:36 ` Peter Hurley
2015-06-03 16:55 ` Thomas Gleixner
2015-06-02 21:46 ` Ingo Molnar
2015-06-02 22:34 ` Bin Gao
2015-06-03 12:35 ` Peter Hurley
2015-06-03 16:34 ` Bin Gao [this message]
2015-06-08 18:19 ` [PATCH v6 " Bin Gao
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=20150603163447.GA149091@worksta \
--to=bin.gao@linux.intel.com \
--cc=bp@suse.de \
--cc=gnomes@lxorguk.ukuu.org.uk \
--cc=gregkh@linuxfoundation.org \
--cc=hpa@zytor.com \
--cc=jslaby@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peter@hurleysoftware.com \
--cc=stuart.r.anderson@intel.com \
--cc=tglx@linutronix.de \
/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.