We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5cd0c commit 62817d5Copy full SHA for 62817d5
arch/arm64/kernel/smp.c
@@ -84,9 +84,9 @@ enum ipi_msg_type {
84
MAX_IPI
85
};
86
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;
+static int ipi_irq_base __ro_after_init;
+static int nr_ipi __ro_after_init = NR_IPI;
+static struct irq_desc *ipi_desc[MAX_IPI] __ro_after_init;
90
91
static void ipi_setup(int cpu);
92
0 commit comments