From: Guilherme G. Piccoli <hidden> Date: 2017-03-22 19:28:41
This series contains some improvements and fixes to xmon:
1) Pan Xinhui fixed a long-term bug, in which the xmon debugger got
stuck enabled after invoked by sysrq, regardless the state it was
set in the kernel command-line.
2) A debugfs entry was added in order to allow users to enable/disable
xmon without needing a kernel reload.
3) The nobt option was dropped and some minor issues were fixed, like
a misplacement of __initdata.
@mpe: The series was rebased against powerpc-next.
Also, I sent the patchset before with multiple versions, now
all patches are the same version, v4.
Guilherme G. Piccoli (2):
powerpc/xmon: drop the nobt option from xmon plus minor fixes
powerpc/xmon: add debugfs entry for xmon
Pan Xinhui (1):
powerpc/xmon: Fix an unexpected xmon on/off state change
arch/powerpc/xmon/xmon.c | 59 +++++++++++++++++++++++++++++++++++-------------
1 file changed, 43 insertions(+), 16 deletions(-)
--
2.11.0
From: Guilherme G. Piccoli <hidden> Date: 2017-03-22 19:28:17
From: Pan Xinhui <redacted>
Once xmon is triggered by sysrq-x, it is enabled always afterwards even
if it is disabled during boot. This will cause a system reset interrupt
fail to dump. So keep xmon in its original state after exit.
We have several ways to set xmon on or off.
1) by a build config CONFIG_XMON_DEFAULT.
2) by a boot cmdline with xmon or xmon=early or xmon=on to enable xmon
and xmon=off to disable xmon. This value will override that in step 1.
3) by a debugfs interface, as proposed in this patchset.
And this value can override those in step 1 and 2.
Signed-off-by: Pan Xinhui <redacted>
Signed-off-by: Guilherme G. Piccoli <redacted>
---
v3: changed xmon_off to xmon_on, simplifying the logic [mpe suggestion].
arch/powerpc/xmon/xmon.c | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
@@ -3326,10 +3329,12 @@ static int __init early_parse_xmon(char *p)/* just "xmon" is equivalent to "xmon=early" */xmon_init(1);xmon_early=1;-}elseif(strncmp(p,"on",2)==0)+xmon_on=1;+}elseif(strncmp(p,"on",2)==0){xmon_init(1);-elseif(strncmp(p,"off",3)==0)-xmon_off=1;+xmon_on=1;+}elseif(strncmp(p,"off",3)==0)+xmon_on=0;elseif(strncmp(p,"nobt",4)==0)xmon_no_auto_backtrace=1;else
From: Guilherme G. Piccoli <hidden> Date: 2017-03-22 19:28:20
The xmon parameter nobt was added long time ago, by commit 26c8af5f01df
("[POWERPC] print backtrace when entering xmon"). The problem that time
was that during a crash in a machine with USB keyboard, xmon wouldn't
respond to commands from the keyboard, so printing the backtrace wouldn't
be possible.
Idea then was to show automatically the backtrace on xmon crash for the
first time it's invoked (if it recovers, next time xmon won't show
backtrace automatically). The nobt parameter was added _only_ to prevent
this automatic trace show. Seems long time ago USB keyboards didn't work
that well!
We don't need this parameter anymore, the feature of auto showing the
backtrace is interesting (imagine a case of auto-reboot script),
so this patch extends the functionality, by always showing the backtrace
automatically when xmon is invoked; it removes the nobt parameter too.
Also, this patch fixes __initdata placement on xmon_early and replaces
__initcall() with modern device_initcall() on sysrq handler.
Signed-off-by: Guilherme G. Piccoli <redacted>
---
v4: extended the auto backtrace functionality, by showing the trace
in every xmon invokation [mpe suggestion].
arch/powerpc/xmon/xmon.c | 13 +++----------
1 file changed, 3 insertions(+), 10 deletions(-)
From: Guilherme G. Piccoli <hidden> Date: 2017-03-22 19:29:14
Currently the xmon debugger is set only via kernel boot command-line.
It's disabled by default, and can be enabled with "xmon=on" on the
command-line. Also, xmon may be accessed via sysrq mechanism.
But we cannot enable/disable xmon in runtime, it needs kernel reload.
This patch introduces a debugfs entry for xmon, allowing user to query
its current state and change it if desired. Basically, the "xmon" file
to read from/write to is under the debugfs mount point, on powerpc
directory. It's a simple attribute, value 0 meaning xmon is disabled
and value 1 the opposite. Writing these states to the file will take
immediate effect in the debugger.
Signed-off-by: Guilherme G. Piccoli <redacted>
---
v4: fixed a bug in the patch (s/xmon_off/xmon_on/g basically).
v3: logic improved based in the changes made on patch 1.
arch/powerpc/xmon/xmon.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
From: Paul Mackerras <hidden> Date: 2017-03-31 00:36:48
On Wed, Mar 22, 2017 at 04:27:50PM -0300, Guilherme G. Piccoli wrote:
The xmon parameter nobt was added long time ago, by commit 26c8af5f01df
("[POWERPC] print backtrace when entering xmon"). The problem that time
was that during a crash in a machine with USB keyboard, xmon wouldn't
respond to commands from the keyboard, so printing the backtrace wouldn't
be possible.
Idea then was to show automatically the backtrace on xmon crash for the
first time it's invoked (if it recovers, next time xmon won't show
backtrace automatically). The nobt parameter was added _only_ to prevent
this automatic trace show. Seems long time ago USB keyboards didn't work
that well!
Xmon still can't use a USB keyboard. It's not a question of how well
USB keyboards work, it's that having a non-interrupt-driven USB stack
with (at least) an OHCI host controller driver and a keyboard driver
in xmon is impractical.
Paul.
From: Michael Ellerman <hidden> Date: 2017-03-31 12:33:54
On Wed, 2017-03-22 at 19:27:49 UTC, "Guilherme G. Piccoli" wrote:
From: Pan Xinhui <redacted>
Once xmon is triggered by sysrq-x, it is enabled always afterwards even
if it is disabled during boot. This will cause a system reset interrupt
fail to dump. So keep xmon in its original state after exit.
We have several ways to set xmon on or off.
1) by a build config CONFIG_XMON_DEFAULT.
2) by a boot cmdline with xmon or xmon=early or xmon=on to enable xmon
and xmon=off to disable xmon. This value will override that in step 1.
3) by a debugfs interface, as proposed in this patchset.
And this value can override those in step 1 and 2.
Signed-off-by: Pan Xinhui <redacted>
Signed-off-by: Guilherme G. Piccoli <redacted>
From: Guilherme G. Piccoli <hidden> Date: 2017-03-31 13:08:07
On 03/30/2017 09:36 PM, Paul Mackerras wrote:
On Wed, Mar 22, 2017 at 04:27:50PM -0300, Guilherme G. Piccoli wrote:
quoted
The xmon parameter nobt was added long time ago, by commit 26c8af5f01df
("[POWERPC] print backtrace when entering xmon"). The problem that time
was that during a crash in a machine with USB keyboard, xmon wouldn't
respond to commands from the keyboard, so printing the backtrace wouldn't
be possible.
Idea then was to show automatically the backtrace on xmon crash for the
first time it's invoked (if it recovers, next time xmon won't show
backtrace automatically). The nobt parameter was added _only_ to prevent
this automatic trace show. Seems long time ago USB keyboards didn't work
that well!
Xmon still can't use a USB keyboard. It's not a question of how well
USB keyboards work, it's that having a non-interrupt-driven USB stack
with (at least) an OHCI host controller driver and a keyboard driver
in xmon is impractical.
That's nice to know Paul, thank you. Fortunately, we kept the automatic
trace showing feature!
Seems my commit message was unfortunate/wrong in this aspect, though.
@mpe, if you wanna change, feel free. Although it's not essential...
Cheers,
Guilherme
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2017-04-01 10:31:08
"Guilherme G. Piccoli" [off-list ref] writes:
On 03/30/2017 09:36 PM, Paul Mackerras wrote:
quoted
On Wed, Mar 22, 2017 at 04:27:50PM -0300, Guilherme G. Piccoli wrote:
quoted
The xmon parameter nobt was added long time ago, by commit 26c8af5f01df
("[POWERPC] print backtrace when entering xmon"). The problem that time
was that during a crash in a machine with USB keyboard, xmon wouldn't
respond to commands from the keyboard, so printing the backtrace wouldn't
be possible.
Idea then was to show automatically the backtrace on xmon crash for the
first time it's invoked (if it recovers, next time xmon won't show
backtrace automatically). The nobt parameter was added _only_ to prevent
this automatic trace show. Seems long time ago USB keyboards didn't work
that well!
Xmon still can't use a USB keyboard. It's not a question of how well
USB keyboards work, it's that having a non-interrupt-driven USB stack
with (at least) an OHCI host controller driver and a keyboard driver
in xmon is impractical.
That's nice to know Paul, thank you. Fortunately, we kept the automatic
trace showing feature!
Seems my commit message was unfortunate/wrong in this aspect, though.
@mpe, if you wanna change, feel free. Although it's not essential...
It's already merged, so it is what it is.
I do remember not quite understanding what you meant with the "long time
ago" bit, but didn't think much more of it.
cheers