Re: [patch 1/2] Add BSS to resource tree

2007-10-15 Thread Bernhard Walle
* Andrew Morton <[EMAIL PROTECTED]> [2007-10-15 20:32]: > On Mon, 15 Oct 2007 13:50:43 +0200 > Bernhard Walle <[EMAIL PROTECTED]> wrote: > > > --- a/arch/x86/kernel/e820_32.c > > +++ b/arch/x86/kernel/e820_32.c > > @@ -51,6 +51,13 @@ struct resource code_resource = { > > .flags = IORESOURCE_B

Re: [patch 1/2] Add BSS to resource tree

2007-10-15 Thread Andrew Morton
On Mon, 15 Oct 2007 13:50:43 +0200 Bernhard Walle <[EMAIL PROTECTED]> wrote: > --- a/arch/x86/kernel/e820_32.c > +++ b/arch/x86/kernel/e820_32.c > @@ -51,6 +51,13 @@ struct resource code_resource = { > .flags = IORESOURCE_BUSY | IORESOURCE_MEM > }; > > +struct resource bss_resource = { >

[patch 1/2] Add BSS to resource tree

2007-10-15 Thread Bernhard Walle
This patch adds the BSS to the resource tree just as kernel text and kernel data are in the resource tree. The main reason behind this is to avoid crashkernel reservation in that area. Signed-off-by: Bernhard Walle <[EMAIL PROTECTED]> --- arch/x86/kernel/e820_32.c |8 arch/x86/ker