All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] powerpc/xmon: improvements and fixes
@ 2017-02-21  1:58 Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH v3 1/3] powerpc/xmon: Fix an unexpected xmon on/off state change Guilherme G. Piccoli
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Guilherme G. Piccoli @ 2017-02-21  1:58 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan, gpiccoli

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.

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 | 62 ++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 50 insertions(+), 12 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v3 1/3] powerpc/xmon: Fix an unexpected xmon on/off state change
  2017-02-21  1:58 [PATCH v2 0/3] powerpc/xmon: improvements and fixes Guilherme G. Piccoli
@ 2017-02-21  1:58 ` Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH 2/3] powerpc/xmon: drop the nobt option from xmon plus minor fixes Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon Guilherme G. Piccoli
  2 siblings, 0 replies; 6+ messages in thread
From: Guilherme G. Piccoli @ 2017-02-21  1:58 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan, gpiccoli

From: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>

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, 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.
This value can override those in step 1 and 2.

Signed-off-by: Pan Xinhui <xinhui.pan@linux.vnet.ibm.com>
Signed-off-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
---
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(-)

diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index a44b049..2e6c265 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -76,6 +76,7 @@ static int xmon_gate;
 #endif /* CONFIG_SMP */
 
 static unsigned long in_xmon __read_mostly = 0;
+static int xmon_on = IS_ENABLED(CONFIG_XMON_DEFAULT);
 
 static unsigned long adrs;
 static int size = 1;
@@ -3250,6 +3251,8 @@ static void sysrq_handle_xmon(int key)
 	/* ensure xmon is enabled */
 	xmon_init(1);
 	debugger(get_irq_regs());
+	if (!xmon_on)
+		xmon_init(0);
 }
 
 static struct sysrq_key_op sysrq_xmon_op = {
@@ -3266,7 +3269,7 @@ static int __init setup_xmon_sysrq(void)
 __initcall(setup_xmon_sysrq);
 #endif /* CONFIG_MAGIC_SYSRQ */
 
-static int __initdata xmon_early, xmon_off;
+static int __initdata xmon_early;
 
 static int __init early_parse_xmon(char *p)
 {
@@ -3274,10 +3277,12 @@ static int __init early_parse_xmon(char *p)
 		/* just "xmon" is equivalent to "xmon=early" */
 		xmon_init(1);
 		xmon_early = 1;
-	} else if (strncmp(p, "on", 2) == 0)
+		xmon_on = 1;
+	} else if (strncmp(p, "on", 2) == 0) {
 		xmon_init(1);
-	else if (strncmp(p, "off", 3) == 0)
-		xmon_off = 1;
+		xmon_on = 1;
+	} else if (strncmp(p, "off", 3) == 0)
+		xmon_on = 0;
 	else if (strncmp(p, "nobt", 4) == 0)
 		xmon_no_auto_backtrace = 1;
 	else
@@ -3289,10 +3294,8 @@ early_param("xmon", early_parse_xmon);
 
 void __init xmon_setup(void)
 {
-#ifdef CONFIG_XMON_DEFAULT
-	if (!xmon_off)
+	if (xmon_on)
 		xmon_init(1);
-#endif
 	if (xmon_early)
 		debugger(NULL);
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] powerpc/xmon: drop the nobt option from xmon plus minor fixes
  2017-02-21  1:58 [PATCH v2 0/3] powerpc/xmon: improvements and fixes Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH v3 1/3] powerpc/xmon: Fix an unexpected xmon on/off state change Guilherme G. Piccoli
@ 2017-02-21  1:58 ` Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon Guilherme G. Piccoli
  2 siblings, 0 replies; 6+ messages in thread
From: Guilherme G. Piccoli @ 2017-02-21  1:58 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan, gpiccoli

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 it anymore, but the feature of auto showing the backtrace
on first crash seems interesting (imagine a case of auto-reboot script),
so this patch keeps the functionality, yet removes the nobt parameter.
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 <gpiccoli@linux.vnet.ibm.com>
---
 arch/powerpc/xmon/xmon.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index 2e6c265..f1fcfa8 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -185,7 +185,7 @@ static void dump_tlb_44x(void);
 static void dump_tlb_book3e(void);
 #endif
 
-static int xmon_no_auto_backtrace;
+static bool xmon_no_auto_backtrace;
 
 #ifdef CONFIG_PPC64
 #define REG		"%.16lx"
@@ -882,7 +882,7 @@ cmds(struct pt_regs *excp)
 	xmon_regs = excp;
 
 	if (!xmon_no_auto_backtrace) {
-		xmon_no_auto_backtrace = 1;
+		xmon_no_auto_backtrace = true;
 		xmon_show_stack(excp->gpr[1], excp->link, excp->nip);
 	}
 
@@ -3248,11 +3248,17 @@ static void xmon_init(int enable)
 #ifdef CONFIG_MAGIC_SYSRQ
 static void sysrq_handle_xmon(int key)
 {
+	bool autobt_state = xmon_no_auto_backtrace;
+
+	xmon_no_auto_backtrace = true;
 	/* ensure xmon is enabled */
 	xmon_init(1);
+
 	debugger(get_irq_regs());
 	if (!xmon_on)
 		xmon_init(0);
+
+	xmon_no_auto_backtrace = autobt_state;
 }
 
 static struct sysrq_key_op sysrq_xmon_op = {
@@ -3266,10 +3272,10 @@ static int __init setup_xmon_sysrq(void)
 	register_sysrq_key('x', &sysrq_xmon_op);
 	return 0;
 }
-__initcall(setup_xmon_sysrq);
+device_initcall(setup_xmon_sysrq);
 #endif /* CONFIG_MAGIC_SYSRQ */
 
-static int __initdata xmon_early;
+static int xmon_early __initdata;
 
 static int __init early_parse_xmon(char *p)
 {
@@ -3283,8 +3289,6 @@ static int __init early_parse_xmon(char *p)
 		xmon_on = 1;
 	} else if (strncmp(p, "off", 3) == 0)
 		xmon_on = 0;
-	else if (strncmp(p, "nobt", 4) == 0)
-		xmon_no_auto_backtrace = 1;
 	else
 		return 1;
 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon
  2017-02-21  1:58 [PATCH v2 0/3] powerpc/xmon: improvements and fixes Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH v3 1/3] powerpc/xmon: Fix an unexpected xmon on/off state change Guilherme G. Piccoli
  2017-02-21  1:58 ` [PATCH 2/3] powerpc/xmon: drop the nobt option from xmon plus minor fixes Guilherme G. Piccoli
@ 2017-02-21  1:58 ` Guilherme G. Piccoli
  2017-02-21  6:35   ` Pan Xinhui
  2 siblings, 1 reply; 6+ messages in thread
From: Guilherme G. Piccoli @ 2017-02-21  1:58 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan, gpiccoli

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 <gpiccoli@linux.vnet.ibm.com>
---
v3: logic improved based in the changes made on patch 1.

v2: dropped the custom parser by using simple attributes [mpe suggestion].


 arch/powerpc/xmon/xmon.c | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index f1fcfa8..764ea62 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -29,6 +29,10 @@
 #include <linux/nmi.h>
 #include <linux/ctype.h>
 
+#ifdef CONFIG_DEBUG_FS
+#include <linux/debugfs.h>
+#endif
+
 #include <asm/ptrace.h>
 #include <asm/string.h>
 #include <asm/prom.h>
@@ -3275,6 +3279,33 @@ static int __init setup_xmon_sysrq(void)
 device_initcall(setup_xmon_sysrq);
 #endif /* CONFIG_MAGIC_SYSRQ */
 
+#ifdef CONFIG_DEBUG_FS
+static int xmon_dbgfs_set(void *data, u64 val)
+{
+	xmon_off = !val;
+	xmon_init(!xmon_off);
+
+	return 0;
+}
+
+static int xmon_dbgfs_get(void *data, u64 *val)
+{
+	*val = !xmon_off;
+	return 0;
+}
+
+DEFINE_SIMPLE_ATTRIBUTE(xmon_dbgfs_ops, xmon_dbgfs_get,
+			xmon_dbgfs_set, "%llu\n");
+
+static int __init setup_xmon_dbgfs(void)
+{
+	debugfs_create_file("xmon", 0600, powerpc_debugfs_root, NULL,
+				&xmon_dbgfs_ops);
+	return 0;
+}
+device_initcall(setup_xmon_dbgfs);
+#endif /* CONFIG_DEBUG_FS */
+
 static int xmon_early __initdata;
 
 static int __init early_parse_xmon(char *p)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon
  2017-02-21  1:58 ` [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon Guilherme G. Piccoli
@ 2017-02-21  6:35   ` Pan Xinhui
  2017-02-21 13:51     ` Guilherme G. Piccoli
  0 siblings, 1 reply; 6+ messages in thread
From: Pan Xinhui @ 2017-02-21  6:35 UTC (permalink / raw)
  To: Guilherme G. Piccoli, linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan



在 2017/2/21 09:58, Guilherme G. Piccoli 写道:
> 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 <gpiccoli@linux.vnet.ibm.com>
> ---
> v3: logic improved based in the changes made on patch 1.
>
> v2: dropped the custom parser by using simple attributes [mpe suggestion].
>
>
>  arch/powerpc/xmon/xmon.c | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
> index f1fcfa8..764ea62 100644
> --- a/arch/powerpc/xmon/xmon.c
> +++ b/arch/powerpc/xmon/xmon.c
> @@ -29,6 +29,10 @@
>  #include <linux/nmi.h>
>  #include <linux/ctype.h>
>
> +#ifdef CONFIG_DEBUG_FS
> +#include <linux/debugfs.h>
> +#endif
> +
>  #include <asm/ptrace.h>
>  #include <asm/string.h>
>  #include <asm/prom.h>
> @@ -3275,6 +3279,33 @@ static int __init setup_xmon_sysrq(void)
>  device_initcall(setup_xmon_sysrq);
>  #endif /* CONFIG_MAGIC_SYSRQ */
>
> +#ifdef CONFIG_DEBUG_FS
> +static int xmon_dbgfs_set(void *data, u64 val)
> +{
> +	xmon_off = !val;
xmon_off is really 'off' :)
There is xmon_on

> +	xmon_init(!xmon_off);
> +
> +	return 0;
> +}
> +
> +static int xmon_dbgfs_get(void *data, u64 *val)
> +{
> +	*val = !xmon_off;
> +	return 0;
> +}
> +
> +DEFINE_SIMPLE_ATTRIBUTE(xmon_dbgfs_ops, xmon_dbgfs_get,
> +			xmon_dbgfs_set, "%llu\n");
> +
> +static int __init setup_xmon_dbgfs(void)
> +{
> +	debugfs_create_file("xmon", 0600, powerpc_debugfs_root, NULL,
> +				&xmon_dbgfs_ops);
> +	return 0;
> +}
> +device_initcall(setup_xmon_dbgfs);
> +#endif /* CONFIG_DEBUG_FS */
> +
>  static int xmon_early __initdata;
>
>  static int __init early_parse_xmon(char *p)
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon
  2017-02-21  6:35   ` Pan Xinhui
@ 2017-02-21 13:51     ` Guilherme G. Piccoli
  0 siblings, 0 replies; 6+ messages in thread
From: Guilherme G. Piccoli @ 2017-02-21 13:51 UTC (permalink / raw)
  To: Pan Xinhui, linuxppc-dev; +Cc: benh, paulus, mpe, npiggin, xinhui.pan

On 02/21/2017 03:35 AM, Pan Xinhui wrote:
> 
> 
> 在 2017/2/21 09:58, Guilherme G. Piccoli 写道:
>> 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 <gpiccoli@linux.vnet.ibm.com>
>> ---
>> v3: logic improved based in the changes made on patch 1.
>>
>> v2: dropped the custom parser by using simple attributes [mpe suggestion].
>>
>>
>>  arch/powerpc/xmon/xmon.c | 31 +++++++++++++++++++++++++++++++
>>  1 file changed, 31 insertions(+)
>>
>> diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
>> index f1fcfa8..764ea62 100644
>> --- a/arch/powerpc/xmon/xmon.c
>> +++ b/arch/powerpc/xmon/xmon.c
>> @@ -29,6 +29,10 @@
>>  #include <linux/nmi.h>
>>  #include <linux/ctype.h>
>>
>> +#ifdef CONFIG_DEBUG_FS
>> +#include <linux/debugfs.h>
>> +#endif
>> +
>>  #include <asm/ptrace.h>
>>  #include <asm/string.h>
>>  #include <asm/prom.h>
>> @@ -3275,6 +3279,33 @@ static int __init setup_xmon_sysrq(void)
>>  device_initcall(setup_xmon_sysrq);
>>  #endif /* CONFIG_MAGIC_SYSRQ */
>>
>> +#ifdef CONFIG_DEBUG_FS
>> +static int xmon_dbgfs_set(void *data, u64 val)
>> +{
>> +	xmon_off = !val;
> xmon_off is really 'off' :)
> There is xmon_on
> 

OK, this is *really* odd.
I sent the wrong version of the patch ={

I'm _sorry_, thanks for noticing Xinhui!

@Michael, my complete fault. I tested the real "v3" of this patch, but
for some reason (aka my disorganization) I sent the old v2. In the v3, I
used "xmon_on = !!val".

How about if I resend the whole series tomorrow, correcting this and
changing patch 2 in order to keep the automatic show of backtrace
always? Or do you prefer to fix it yourself?

Thanks, and again, I apologize for the mess.


Guilherme



>> +	xmon_init(!xmon_off);
>> +
>> +	return 0;
>> +}
>> +
>> +static int xmon_dbgfs_get(void *data, u64 *val)
>> +{
>> +	*val = !xmon_off;
>> +	return 0;
>> +}
>> +
>> +DEFINE_SIMPLE_ATTRIBUTE(xmon_dbgfs_ops, xmon_dbgfs_get,
>> +			xmon_dbgfs_set, "%llu\n");
>> +
>> +static int __init setup_xmon_dbgfs(void)
>> +{
>> +	debugfs_create_file("xmon", 0600, powerpc_debugfs_root, NULL,
>> +				&xmon_dbgfs_ops);
>> +	return 0;
>> +}
>> +device_initcall(setup_xmon_dbgfs);
>> +#endif /* CONFIG_DEBUG_FS */
>> +
>>  static int xmon_early __initdata;
>>
>>  static int __init early_parse_xmon(char *p)
>>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-02-21 13:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-21  1:58 [PATCH v2 0/3] powerpc/xmon: improvements and fixes Guilherme G. Piccoli
2017-02-21  1:58 ` [PATCH v3 1/3] powerpc/xmon: Fix an unexpected xmon on/off state change Guilherme G. Piccoli
2017-02-21  1:58 ` [PATCH 2/3] powerpc/xmon: drop the nobt option from xmon plus minor fixes Guilherme G. Piccoli
2017-02-21  1:58 ` [PATCH v3 3/3] powerpc/xmon: add debugfs entry for xmon Guilherme G. Piccoli
2017-02-21  6:35   ` Pan Xinhui
2017-02-21 13:51     ` Guilherme G. Piccoli

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.