Skip to content

Commit 62817d5

Browse files
diandersctmarinas
authored andcommitted
arm64: smp: Mark IPI globals as __ro_after_init
Mark the three IPI-related globals in smp.c as "__ro_after_init" since they are only ever set in set_smp_ipi_range(), which is marked "__init". This is a better and more secure marking than the old "__read_mostly". Suggested-by: Stephen Boyd <[email protected]> Acked-by: Mark Rutland <[email protected]> Tested-by: Chen-Yu Tsai <[email protected]> Signed-off-by: Douglas Anderson <[email protected]> Reviewed-by: Stephen Boyd <[email protected]> Link: https://lore.kernel.org/r/20230906090246.v13.7.I625d393afd71e1766ef73d3bfaac0b347a4afd19@changeid Signed-off-by: Catalin Marinas <[email protected]>
1 parent 2f5cd0c commit 62817d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/arm64/kernel/smp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ enum ipi_msg_type {
8484
MAX_IPI
8585
};
8686

87-
static int ipi_irq_base __read_mostly;
88-
static int nr_ipi __read_mostly = NR_IPI;
89-
static struct irq_desc *ipi_desc[MAX_IPI] __read_mostly;
87+
static int ipi_irq_base __ro_after_init;
88+
static int nr_ipi __ro_after_init = NR_IPI;
89+
static struct irq_desc *ipi_desc[MAX_IPI] __ro_after_init;
9090

9191
static void ipi_setup(int cpu);
9292

0 commit comments

Comments
 (0)