Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1334981
| From | Stefan Agner <stefan@agner.ch> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] ARM: don't print missing L2 cache as error |
| Date | 2016-02-16 04:30 +0100 |
| Message-ID | <r2EuR-24K-1@gated-at.bofh.it> (permalink) |
| References | <qVJzk-45K-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Russel,
Any comment to this? Currently the kernel prints an error message as
follows on the platform at hand:
[ 0.000000] L2C: failed to init: -19
--
Stefan
On 2016-01-27 17:27, Stefan Agner wrote:
> Not having a L2 cache controller is a shame, but not an error. Avoid
> printing an error message if L2 controller initialization returns
> with ENODEV.
>
> Signed-off-by: Stefan Agner <stefan@agner.ch>
> ---
> Hi Russel,
>
> We use a multiplatform kernel for two similar SoC's, one with L2
> cache the other without. Maybe silently ignore -ENODEV would be
> an option too, not sure what is preferred here.
>
> --
> Stefan
>
> arch/arm/kernel/irq.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/kernel/irq.c b/arch/arm/kernel/irq.c
> index 1d45320e..f80c480 100644
> --- a/arch/arm/kernel/irq.c
> +++ b/arch/arm/kernel/irq.c
> @@ -95,7 +95,9 @@ void __init init_IRQ(void)
> outer_cache.write_sec = machine_desc->l2c_write_sec;
> ret = l2x0_of_init(machine_desc->l2c_aux_val,
> machine_desc->l2c_aux_mask);
> - if (ret)
> + if (ret == -ENODEV)
> + pr_info("L2C: no device found\n");
> + else if (ret)
> pr_err("L2C: failed to init: %d\n", ret);
> }
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [PATCH] ARM: don't print missing L2 cache as error Stefan Agner <stefan@agner.ch> - 2016-02-16 04:30 +0100 Re: [PATCH] ARM: don't print missing L2 cache as error Russell King - ARM Linux <linux@arm.linux.org.uk> - 2016-02-16 12:50 +0100
csiph-web