All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Petr Mladek <pmladek@suse.com>,
	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 2/3] printk: Fix preferred console selection with multiple matches
Date: Thu, 13 Feb 2020 14:52:36 +0900	[thread overview]
Message-ID: <20200213055236.GE13208@google.com> (raw)
In-Reply-To: <97dc50d411e10ac8aab1de0376d7a535fea8c60a.camel@kernel.crashing.org>

On (20/02/06 15:02), Benjamin Herrenschmidt wrote:
[..]
>  static int __add_preferred_console(char *name, int idx, char *options,
> -				   char *brl_options)
> +				   char *brl_options, bool user_specified)
>  {
>  	struct console_cmdline *c;
>  	int i;
> @@ -2131,6 +2131,8 @@ static int __add_preferred_console(char *name, int idx, char *options,
>  		if (strcmp(c->name, name) == 0 && c->index == idx) {
>  			if (!brl_options)
>  				preferred_console = i;
> +                       if (user_specified)
> +                               c->user_specified = true;
>  			return 0;
>  		}
>  	}
> @@ -2140,6 +2142,7 @@ static int __add_preferred_console(char *name, int idx, char *options,
>  		preferred_console = i;
>  	strlcpy(c->name, name, sizeof(c->name));
>  	c->options = options;
> +	c->user_specified = user_specified;
>  	braille_set_options(c, brl_options);
>  
>  	c->index = idx;
> @@ -2194,7 +2197,7 @@ static int __init console_setup(char *str)
>  	idx = simple_strtoul(s, NULL, 10);
>  	*s = 0;
>  
> -	__add_preferred_console(buf, idx, options, brl_options);
> +	__add_preferred_console(buf, idx, options, brl_options, true);
>  	console_set_on_cmdline = 1;
>  	return 1;
>  }
> @@ -2215,7 +2218,7 @@ __setup("console=", console_setup);
>   */
>  int add_preferred_console(char *name, int idx, char *options)
>  {
> -	return __add_preferred_console(name, idx, options, NULL);
> +	return __add_preferred_console(name, idx, options, NULL, false);
>  }

A silly question:

Can the same console first be added by
	console_setup()->__add_preferred_console(true)
and then by
	add_preferred_console()->__add_preferred_console(false)

	-ss

  parent reply	other threads:[~2020-02-13  5:52 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-06  4:02 [PATCH v3 2/3] printk: Fix preferred console selection with multiple matches Benjamin Herrenschmidt
2020-02-11 14:41 ` Petr Mladek
2020-02-11 15:33   ` Benjamin Herrenschmidt
2020-02-13  5:52 ` Sergey Senozhatsky [this message]
2020-02-13  8:39   ` Petr Mladek
2020-02-13  9:09     ` Sergey Senozhatsky

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=20200213055236.GE13208@google.com \
    --to=sergey.senozhatsky.work@gmail.com \
    --cc=benh@kernel.crashing.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmladek@suse.com \
    /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.