Instead of that maybe_unused mess please just use good old ifdefs.
if (hubless)
- proc_version_fops.open = proc_hubless_open;
+ proc_create_single("hubless", 0, pde, proc_hubless_show);
else
- proc_version_fops.open = proc_hubbed_open;
+ proc_create_single("hubbed", 0, pde, proc_hubbed_show);
}
Or someone could figure out what happens if we turn the
proc_create_single stub into an inline function instead of the
define. That makes it used at a syntactic level, the big question is
if the compiler is smart enough to optimize away the unused callback
still.
---
arch/x86/kernel/apic/x2apic_uv_x.c | 9 +++++++++
1 file changed, 9 insertions(+)
--- linux.orig/arch/x86/kernel/apic/x2apic_uv_x.c
+++ linux/arch/x86/kernel/apic/x2apic_uv_x.c
@@ -1533,6 +1533,7 @@ static void check_efi_reboot(void)
reboot_type = BOOT_ACPI;
}
+#ifdef CONFIG_PROC_FS
/* Setup user proc fs files */
static int proc_hubbed_show(struct seq_file *file, void *data)
{
@@ -1595,6 +1596,14 @@ static __init void uv_setup_proc_files(i
proc_version_fops.open = proc_hubbed_open;
}
+#else /* !CONFIG_PROC_FS */
+
+static __init void uv_setup_proc_files(int hubless)
+{
+}
+
+#endif /* !CONFIG_PROC_FS */
+
/* Initialize UV hubless systems */
static __init int uv_system_init_hubless(void)
{