]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
kgdb: Make "kgdbcon" work properly with "kgdb_earlycon"
authorDouglas Anderson <dianders@chromium.org>
Tue, 30 Jun 2020 22:14:38 +0000 (15:14 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Nov 2020 10:08:41 +0000 (11:08 +0100)
commitcbc03dedecb6e5366f2d3f0a328cfc3ef4762a25
treedb912edc2915aa69047d96c682c46cede0168f49
parentd3380de483d55d904fb94a241406b34ed2fada7d
kgdb: Make "kgdbcon" work properly with "kgdb_earlycon"

[ Upstream commit b18b099e04f450cdc77bec72acefcde7042bd1f3 ]

On my system the kernel processes the "kgdb_earlycon" parameter before
the "kgdbcon" parameter.  When we setup "kgdb_earlycon" we'll end up
in kgdb_register_callbacks() and "kgdb_use_con" won't have been set
yet so we'll never get around to starting "kgdbcon".  Let's remedy
this by detecting that the IO module was already registered when
setting "kgdb_use_con" and registering the console then.

As part of this, to avoid pre-declaring things, move the handling of
the "kgdbcon" further down in the file.

Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20200630151422.1.I4aa062751ff5e281f5116655c976dff545c09a46@changeid
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/debug/debug_core.c