Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c08158e authored by David S. Miller's avatar David S. Miller
Browse files

sparc: Fix /proc/kcore



/proc/kcore investigates the "System RAM" elements in /proc/iomem to
initialize it's memory tables.  Therefore we have to register them
before it tries to do so.  kcore uses device_initcall() so let's
use arch_initcall() for the registry.

Also we need ARCH_PROC_KCORE_TEXT to get the virtual addresses of
the kernel image correct.

Reported-by: default avatarDavid Ahern <david.ahern@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53eb2516
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -86,6 +86,9 @@ config ARCH_DEFCONFIG
	default "arch/sparc/configs/sparc32_defconfig" if SPARC32
	default "arch/sparc/configs/sparc32_defconfig" if SPARC32
	default "arch/sparc/configs/sparc64_defconfig" if SPARC64
	default "arch/sparc/configs/sparc64_defconfig" if SPARC64


config ARCH_PROC_KCORE_TEXT
	def_bool y

config IOMMU_HELPER
config IOMMU_HELPER
	bool
	bool
	default y if SPARC64
	default y if SPARC64
+1 −1
Original line number Original line Diff line number Diff line
@@ -2820,7 +2820,7 @@ static int __init report_memory(void)


	return 0;
	return 0;
}
}
device_initcall(report_memory);
arch_initcall(report_memory);


#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
#define do_flush_tlb_kernel_range	smp_flush_tlb_kernel_range
#define do_flush_tlb_kernel_range	smp_flush_tlb_kernel_range