kgdb/treewide: constify struct kgdb_arch arch_kgdb_ops
authorChristophe Leroy <christophe.leroy@c-s.fr>
Thu, 6 Dec 2018 20:07:40 +0000 (20:07 +0000)
committerDaniel Thompson <daniel.thompson@linaro.org>
Sun, 30 Dec 2018 08:33:06 +0000 (08:33 +0000)
checkpatch.pl reports the following:

  WARNING: struct kgdb_arch should normally be const
  #28: FILE: arch/mips/kernel/kgdb.c:397:
  +struct kgdb_arch arch_kgdb_ops = {

This report makes sense, as all other ops struct, this
one should also be const. This patch does the change.

Cc: Vineet Gupta <vgupta@synopsys.com>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Richard Kuo <rkuo@codeaurora.org>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paul Burton <paul.burton@mips.com>
Cc: James Hogan <jhogan@kernel.org>
Cc: Ley Foon Tan <lftan@altera.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Rich Felker <dalias@libc.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: x86@kernel.org
Acked-by: Daniel Thompson <daniel.thompson@linaro.org>
Acked-by: Paul Burton <paul.burton@mips.com>
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Acked-by: Borislav Petkov <bp@suse.de>
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
14 files changed:
arch/arc/kernel/kgdb.c
arch/arm/kernel/kgdb.c
arch/arm64/kernel/kgdb.c
arch/h8300/kernel/kgdb.c
arch/hexagon/kernel/kgdb.c
arch/microblaze/kernel/kgdb.c
arch/mips/kernel/kgdb.c
arch/nios2/kernel/kgdb.c
arch/powerpc/kernel/kgdb.c
arch/sh/kernel/kgdb.c
arch/sparc/kernel/kgdb_32.c
arch/sparc/kernel/kgdb_64.c
arch/x86/kernel/kgdb.c
include/linux/kgdb.h

index 68d9fe4b5aa75a5c4d137bafb1c8ed515eb30d4c..96bca9963c6334bc5387189ecd4a1f9194787738 100644 (file)
@@ -198,7 +198,7 @@ void kgdb_call_nmi_hook(void *ignored)
        kgdb_nmicallback(raw_smp_processor_id(), NULL);
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* breakpoint instruction: TRAP_S 0x3 */
 #ifdef CONFIG_CPU_BIG_ENDIAN
        .gdb_bpt_instr          = {0x78, 0x7e},
index d9a69e941463a3c90a6075309388dd945e93cb38..6a95b92966406c2db3693c8ca5611eec5146fe76 100644 (file)
@@ -262,7 +262,7 @@ int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt)
  * and we handle the normal undef case within the do_undefinstr
  * handler.
  */
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
 #ifndef __ARMEB__
        .gdb_bpt_instr          = {0xfe, 0xde, 0xff, 0xe7}
 #else /* ! __ARMEB__ */
index da880247c7342974550760f78f6b74308321435d..ce46c4cdf368dcf18dfbd318fd3ceda7aec5fc1d 100644 (file)
@@ -345,7 +345,7 @@ void kgdb_arch_exit(void)
        unregister_die_notifier(&kgdb_notifier);
 }
 
-struct kgdb_arch arch_kgdb_ops;
+const struct kgdb_arch arch_kgdb_ops;
 
 int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt)
 {
index 1a1d30cb0609c60cc3a92528060a10f1f4d286e4..602e478afbd5800eab9ba03277bf7d4db36336f0 100644 (file)
@@ -129,7 +129,7 @@ void kgdb_arch_exit(void)
        /* Nothing to do */
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: trapa #2 */
        .gdb_bpt_instr = { 0x57, 0x20 },
 };
index b95d12038a4ecc277b25487a95809a9146d46460..3fabd3ff3bbd03e9b28800807a76f12f76617b49 100644 (file)
@@ -83,7 +83,7 @@ struct dbg_reg_def_t dbg_reg_def[DBG_MAX_REG_NUM] = {
        { "syscall_nr", GDB_SIZEOF_REG, offsetof(struct pt_regs, syscall_nr)},
 };
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* trap0(#0xDB) 0x0cdb0054 */
        .gdb_bpt_instr = {0x54, 0x00, 0xdb, 0x0c},
 };
index 6366f69d118ecd1af77d8910023ed92afaf7329b..130cd0f064cebcb58b8ea35bb32a53ad0f10964a 100644 (file)
@@ -143,7 +143,7 @@ void kgdb_arch_exit(void)
 /*
  * Global data
  */
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
 #ifdef __MICROBLAZEEL__
        .gdb_bpt_instr = {0x18, 0x00, 0x0c, 0xba}, /* brki r16, 0x18 */
 #else
index 71e5073a0d90f9d8f6ba2e54ab94ebec45fbd554..149100e1bc7c4687903d929e6b9a33700b199454 100644 (file)
@@ -387,7 +387,7 @@ int kgdb_arch_handle_exception(int vector, int signo, int err_code,
        return -1;
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
 #ifdef CONFIG_CPU_BIG_ENDIAN
        .gdb_bpt_instr = { spec_op << 2, 0x00, 0x00, break_op },
 #else
index 117859122d1caf963365f718f8b330544c0a61db..37b25f844a2de7b2db8a84fbcba9a537cf29365e 100644 (file)
@@ -165,7 +165,7 @@ void kgdb_arch_exit(void)
        /* Nothing to do */
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: trap 30 */
        .gdb_bpt_instr = { 0xba, 0x6f, 0x3b, 0x00 },
 };
index b4ce54d733379cec74ec1897eb8a5a8cc85c94aa..e1865565f0aeead6284fa396614faf56143f9f9b 100644 (file)
@@ -477,7 +477,7 @@ int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt)
 /*
  * Global data
  */
-struct kgdb_arch arch_kgdb_ops;
+const struct kgdb_arch arch_kgdb_ops;
 
 static int kgdb_not_implemented(struct pt_regs *regs)
 {
index 14e012ad7c57f42bd059ffc6dcacdb4e761ab0d7..ba0a1687f5cb3106e8f8fd75517d7e94b85609d9 100644 (file)
@@ -370,7 +370,7 @@ void kgdb_arch_exit(void)
        unregister_die_notifier(&kgdb_notifier);
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: trapa #0x3c */
 #ifdef CONFIG_CPU_LITTLE_ENDIAN
        .gdb_bpt_instr          = { 0x3c, 0xc3 },
index 639c8e54530aa56c8493b3676b63b0192025571b..7580775a14b9e71567252dae142f5bb111efdcf8 100644 (file)
@@ -166,7 +166,7 @@ void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long ip)
        regs->npc = regs->pc + 4;
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: ta 0x7d */
        .gdb_bpt_instr          = { 0x91, 0xd0, 0x20, 0x7d },
 };
index a68bbddbdba4702727247f5c4c5a8d35d9426398..5d6c2d287e85533fafba6b9c3fb8243a32e4de93 100644 (file)
@@ -195,7 +195,7 @@ void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long ip)
        regs->tnpc = regs->tpc + 4;
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: ta 0x72 */
        .gdb_bpt_instr          = { 0x91, 0xd0, 0x20, 0x72 },
 };
index ac6291a4178d9387d6c324f928e0b574665bccd2..5db08425063edef59a449760ac8c67c95409f742 100644 (file)
@@ -799,7 +799,7 @@ knl_write:
                                  (char *)bpt->saved_instr, BREAK_INSTR_SIZE);
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
        /* Breakpoint instruction: */
        .gdb_bpt_instr          = { 0xcc },
        .flags                  = KGDB_HW_BREAKPOINT,
index 24422865cd1897226e27143c4b5110c4ad2a7c9f..fbf144aaa7491ad952db5935b738b925e0195659 100644 (file)
@@ -287,7 +287,7 @@ struct kgdb_io {
        int                     is_console;
 };
 
-extern struct kgdb_arch                arch_kgdb_ops;
+extern const struct kgdb_arch          arch_kgdb_ops;
 
 extern unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs);