Re: strange CRASH_DUMP dependencies

From: Vivek Goyal
Date: Mon Aug 22 2005 - 17:40:31 EST


On Mon, Aug 22, 2005 at 12:53:10AM +0200, Adrian Bunk wrote:
> config CRASH_DUMP
> bool "kernel crash dumps (EXPERIMENTAL)"
> depends on EMBEDDED
> depends on EXPERIMENTAL
> depends on HIGHMEM
> help
> Generate crash dump after being started by kexec.
>
> Two questions:
> - If it has any dependencies on kexec, why isn't there a dependency?

crashdump has got dependency on kexec but not in the same kernel. What
I mean is that as of today two kernels are involved in this process. First
kernel is crashing kernel which should have enabled CONFIG_KEXEC and second
kernel (capture kernel) is one which captures the dump and should have
CONFIG_CRASH_DUMP enabled. Second kernel need not to have CONFIG_KEXEC
enabled for catpturing dump. Hence CRASH_DUMP is not directly dependent
on CONFIG_KEXEC.

> - Is there any sane reason for the dependency on EMBEDDED?
>

I believe this was introduced because large servers can have huge amount
of memory (running into Tera Bytes) and saving all that memory might not be
practical. Hence it was perceived that until some filtering mechanism is
implemented, it is more suited for small systems.

Personally I think it can be gotten away with because as a developer I can
run gdb directly on /proc/vmcore and need not to save the whole memory hence
need not to restrict this feature only for small systems.

Eric, do you think otherwise?

Thanks
Vivek
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/