Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1583110

Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change

From Michael Ellerman <mpe@ellerman.id.au>
Newsgroups linux.kernel
Subject Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change
Date 2017-02-17 07:10 +0100
Message-ID <tbJTX-s3-13@gated-at.bofh.it> (permalink)
References <taXZ0-1Ol-1@gated-at.bofh.it> <tbmul-1tR-3@gated-at.bofh.it> <tbrX4-54i-13@gated-at.bofh.it> <tbsT8-5Hw-17@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Pan Xinhui <xinhui@linux.vnet.ibm.com> writes:
> diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
> index 9c0e17c..f6e5c3d 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_off = !IS_ENABLED(CONFIG_XMON_DEFAULT);

I think the logic would probably clearer if we invert this to become
xmon_on.

> @@ -3266,16 +3269,16 @@ 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)
>   {
>   	if (!p || strncmp(p, "early", 5) == 0) {
>   		/* just "xmon" is equivalent to "xmon=early" */
> -		xmon_init(1);
>   		xmon_early = 1;
> +		xmon_off = 0;
>   	} else if (strncmp(p, "on", 2) == 0)
> -		xmon_init(1);
> +		xmon_off = 0;

You've just changed the timing of when xmon gets enabled for the above
two cases, from here which is called very early, to xmon_setup() which
is called much later in boot.

That effectively disables xmon for most of the boot, which we do not
want to do.

cheers

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Pan Xinhui <xinhui.pan@linux.vnet.ibm.com> - 2017-02-15 04:00 +0100
  Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change "Guilherme G. Piccoli" <gpiccoli@linux.vnet.ibm.com> - 2017-02-15 22:30 +0100
  Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Michael Ellerman <mpe@ellerman.id.au> - 2017-02-16 06:10 +0100
    Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change "Guilherme G. Piccoli" <gpiccoli@linux.vnet.ibm.com> - 2017-02-16 12:00 +0100
      Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Pan Xinhui <xinhui@linux.vnet.ibm.com> - 2017-02-16 13:00 +0100
        Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Michael Ellerman <mpe@ellerman.id.au> - 2017-02-17 07:10 +0100
          Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Pan Xinhui <xinhui@linux.vnet.ibm.com> - 2017-02-17 10:40 +0100
            Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change "Guilherme G. Piccoli" <gpiccoli@linux.vnet.ibm.com> - 2017-02-17 13:30 +0100
            Re: [PATCH] powerpc/xmon: Fix an unexpected xmon onoff state change Michael Ellerman <mpe@ellerman.id.au> - 2017-02-20 05:50 +0100

csiph-web