mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Mike Frysinger" <vapier.adi@gmail.com>
To: "Robin Getz" <rgetz@blackfin.uclinux.org>
Cc: "Gerd Hoffmann" <kraxel@redhat.com>, linux-kernel@vger.kernel.org
Subject: Re: Early printk behaviour
Date: Fri, 17 Aug 2007 17:09:39 -0400	[thread overview]
Message-ID: <8bd0f97a0708171409l39166daep185e89438f4104f0@mail.gmail.com> (raw)
In-Reply-To: <200708171700.29647.rgetz@blackfin.uclinux.org>

On 8/17/07, Robin Getz <rgetz@blackfin.uclinux.org> wrote:
> On Fri 17 Aug 2007 03:49, Gerd Hoffmann pondered:
> > Mike Frysinger wrote:
> > >> Hmm, sort of, although I didn't think about the case of no real console
> > >> replacing the early console.  The intention of the patch is to have a
> > >> smooth handover from the boot console to the real console.  And, yes, if
> > >> no real console is ever registered the boot console keeps running ...
> > >
> > > i think it also occurs in the case where real console != early console
> >
> > No.  At least not of the boot console has the CON_BOOT flag set as it
> > should.  Last message you'll see on the boot console is the handover
> > printk, telling you which real console device prints the following
> > messages.  Whenever early and real console go to the physical device or
> > not doesn't matter.
> >
> > >> So you can either let it running and *not* mark it __init, so it can
> > >> keep on going without breaking.  Or you can explicitly unregister your
> > >> boot console at some point, maybe using a late_initcall.
> > >
> > > wouldnt a common kernel late_initcall() be more appropriate ?  if
> > > early console hasnt switched over (for whatever reason), then kill it
> >
> > Hmm, yes, should be doable in generic code.  Check whenever the current
> > console has CON_BOOT set and if so unregister it.
>
> Something like:
>
> Index: kernel/printk.c
> ===================================================================
> --- kernel/printk.c     (revision 3568)
> +++ kernel/printk.c     (working copy)
> @@ -1104,6 +1104,22 @@
>  }
>  EXPORT_SYMBOL(unregister_console);
>
> +int __init disable_boot_consoles(void)
> +{
> +       struct console *con;
> +
> +       for (con = console_drivers; con; con = con->next) {
> +               if (con->flags & CON_BOOT) {
> +                       printk(KERN_INFO "Unregister BootConsole %s%d\n",
> +                               con->name, con->index);
> +                       unregister_console(con);
> +               }
> +       }
> +       return 0;
> +}
> +late_initcall(disable_boot_consoles);

is there any need for a return value then ?
void __init disable_boot_consoles(void);

and if we dont think anyone else wants to call it ...
static void __init disable_boot_consoles(void);
-mike

  reply	other threads:[~2007-08-17 21:10 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-16  2:34 Robin Getz
2007-08-16  7:45 ` Gerd Hoffmann
2007-08-16 16:47   ` Mike Frysinger
2007-08-17  7:49     ` Gerd Hoffmann
2007-08-17 21:00       ` Robin Getz
2007-08-17 21:09         ` Mike Frysinger [this message]
2007-08-17 21:29           ` Robin Getz
2007-08-20  8:01         ` Gerd Hoffmann
2007-08-16 18:56   ` Robin Getz
2007-08-17 17:36   ` [draft] Blackfin Early Printk implmentation Robin Getz
2007-08-17 17:57     ` Mike Frysinger
2007-08-17 18:25       ` Robin Getz
2007-08-17 18:43         ` Mike Frysinger
2007-08-17 17:59     ` Sam Ravnborg
2007-08-17 20:07       ` Robin Getz
2007-08-18  6:23         ` Sam Ravnborg
2007-08-18 15:37           ` Robin Getz

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=8bd0f97a0708171409l39166daep185e89438f4104f0@mail.gmail.com \
    --to=vapier.adi@gmail.com \
    --cc=kraxel@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rgetz@blackfin.uclinux.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

Powered by JetHome