aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/apic/x2apic_uv_x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c
index d492752f79e1..391f358ebb4c 100644
--- a/arch/x86/kernel/apic/x2apic_uv_x.c
+++ b/arch/x86/kernel/apic/x2apic_uv_x.c
@@ -394,10 +394,10 @@ extern int uv_hub_info_version(void)
394EXPORT_SYMBOL(uv_hub_info_version); 394EXPORT_SYMBOL(uv_hub_info_version);
395 395
396/* Default UV memory block size is 2GB */ 396/* Default UV memory block size is 2GB */
397static unsigned long mem_block_size = (2UL << 30); 397static unsigned long mem_block_size __initdata = (2UL << 30);
398 398
399/* Kernel parameter to specify UV mem block size */ 399/* Kernel parameter to specify UV mem block size */
400static int parse_mem_block_size(char *ptr) 400static int __init parse_mem_block_size(char *ptr)
401{ 401{
402 unsigned long size = memparse(ptr, NULL); 402 unsigned long size = memparse(ptr, NULL);
403 403