[patch 3/7] Use extended crashkernel command line on x86_64

2007-09-25 Thread Bernhard Walle
This patch removes the crashkernel parsing from arch/x86_64/kernel/machine_kexec.c and calls the generic function, introduced in the last patch, in setup_bootmem_allocator(). This is necessary because the amount of System RAM must be known in this function now because of the new syntax. Signed-o

Re: [patch 3/7] Use extended crashkernel command line on x86_64

2007-09-20 Thread Bernhard Walle
* Andrew Morton <[EMAIL PROTECTED]> [2007-09-20 00:33]: > > Could you fix all that up please? Thanks for the comments -- should be fixed now, see the new patch series. Thanks, Bernhard - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAI

[patch 3/7] Use extended crashkernel command line on x86_64

2007-09-20 Thread Bernhard Walle
This patch removes the crashkernel parsing from arch/x86_64/kernel/machine_kexec.c and calls the generic function, introduced in the last patch, in setup_bootmem_allocator(). This is necessary because the amount of System RAM must be known in this function now because of the new syntax. Signed-o

Re: [patch 3/7] Use extended crashkernel command line on x86_64

2007-09-19 Thread Andrew Morton
On Thu, 13 Sep 2007 18:14:31 +0200 Bernhard Walle <[EMAIL PROTECTED]> wrote: > +#ifdef CONFIG_KEXEC > +static inline void reserve_crashkernel(void) > +{ The x86_64 function was made inline, so it will actually end up in .text.init. But the i386 equivalent function was not inlined so I'm not sure

[patch 3/7] Use extended crashkernel command line on x86_64

2007-09-13 Thread Bernhard Walle
This patch removes the crashkernel parsing from arch/x86_64/kernel/machine_kexec.c and calls the generic function, introduced in the last patch, in setup_bootmem_allocator(). This is necessary because the amount of System RAM must be known in this function now because of the new syntax. Signed-o