Hi Greg
I'm posting this patch from few month ago,
but it seems SH ML maintainer is not working in these days...
I'm not sure who can handle this patch in this case,
but is it possible to consider about it ?
Thank you for your help !!
Best regards
---
Kuninori Morimoto
From: Kuninori Morimoto <[email protected]>
Mark switch cases where we are expecting to fall through.
This patch fixes the following error:
LINUX/arch/sh/kernel/kgdb.c: In function 'kgdb_arch_handle_exception':
LINUX/arch/sh/kernel/kgdb.c:267:6: error: this statement may fall through [-Werror=implicit-fallthrough=]
if (kgdb_hex2long(&ptr, &addr))
^
LINUX/arch/sh/kernel/kgdb.c:269:2: note: here
case 'D':
^~~~
Signed-off-by: Kuninori Morimoto <[email protected]>
Acked-by: Daniel Thompson <[email protected]>
---
arch/sh/kernel/kgdb.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/sh/kernel/kgdb.c b/arch/sh/kernel/kgdb.c
index 6d61f8c..0d5f3c9 100644
--- a/arch/sh/kernel/kgdb.c
+++ b/arch/sh/kernel/kgdb.c
@@ -266,6 +266,7 @@ int kgdb_arch_handle_exception(int e_vector, int signo, int err_code,
ptr = &remcomInBuffer[1];
if (kgdb_hex2long(&ptr, &addr))
linux_regs->pc = addr;
+ /* fallthrough */
case 'D':
case 'k':
atomic_set(&kgdb_cpu_doing_single_step, -1);
--
2.7.4
Hi Morimoto-san,
On Tue, Dec 10, 2019 at 1:26 AM Kuninori Morimoto
<[email protected]> wrote:
> I'm posting this patch from few month ago,
> but it seems SH ML maintainer is not working in these days...
>
> I'm not sure who can handle this patch in this case,
> but is it possible to consider about it ?
You may want to CC Andrew Morton <[email protected]>, who
tends to pick up patches for non-responsive architecture maintainers.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected]
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
Hi Geert
> > I'm posting this patch from few month ago,
> > but it seems SH ML maintainer is not working in these days...
> >
> > I'm not sure who can handle this patch in this case,
> > but is it possible to consider about it ?
>
> You may want to CC Andrew Morton <[email protected]>, who
> tends to pick up patches for non-responsive architecture maintainers.
Yeah, indeed.
Thanks, will do soon
Thank you for your help !!
Best regards
---
Kuninori Morimoto
On 12/9/19 6:26 PM, Kuninori Morimoto wrote:
>
> Hi Greg
>
> I'm posting this patch from few month ago,
> but it seems SH ML maintainer is not working in these days...
There's two of them and they both are? (I spoke to Rich on IRC last week?)
Rob