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 0ad2507 commit 0156338Copy full SHA for 0156338
arch/x86/kernel/apic/ipi.c
@@ -3,6 +3,7 @@
3
#include <linux/cpumask.h>
4
#include <linux/delay.h>
5
#include <linux/smp.h>
6
+#include <linux/string_choices.h>
7
8
#include <asm/io_apic.h>
9
@@ -23,7 +24,7 @@ __setup("no_ipi_broadcast=", apic_ipi_shorthand);
23
24
static int __init print_ipi_mode(void)
25
{
26
pr_info("IPI shorthand broadcast: %s\n",
- apic_ipi_shorthand_off ? "disabled" : "enabled");
27
+ str_disabled_enabled(apic_ipi_shorthand_off));
28
return 0;
29
}
30
late_initcall(print_ipi_mode);
0 commit comments