Re: [PATCH v3] x86/boot: Fix incorrect ifdeffery scope

2019-03-04 Thread Baoquan He
On 03/04/19 at 06:17pm, Baoquan He wrote: > Add Thomas and Ingo to CC, and x86 ML. Sorry, forgot saying this is on tip/x86/boot branch. > > On 03/04/19 at 01:55pm, Baoquan He wrote: > > The declarations related to immovable memory handling are put out of > > the BOOT_COMPRESSED_MISC_H #ifdef sco

Re: [PATCH v3] x86/boot: Fix incorrect ifdeffery scope

2019-03-04 Thread Baoquan He
Add Thomas and Ingo to CC, and x86 ML. On 03/04/19 at 01:55pm, Baoquan He wrote: > The declarations related to immovable memory handling are put out of > the BOOT_COMPRESSED_MISC_H #ifdef scope, wrap them inside. > > Signed-off-by: Baoquan He > --- > v2->v3: > Add code comment to clearly note

Re: [PATCH v3] x86/boot: Fix incorrect ifdeffery scope

2019-03-03 Thread Chao Fan
On Mon, Mar 04, 2019 at 01:55:46PM +0800, Baoquan He wrote: >The declarations related to immovable memory handling are put out of >the BOOT_COMPRESSED_MISC_H #ifdef scope, wrap them inside. Looks good, thank you for the fix. Thanks, Chao Fan > >Signed-off-by: Baoquan He >--- >v2->v3: > Add cod

[PATCH v3] x86/boot: Fix incorrect ifdeffery scope

2019-03-03 Thread Baoquan He
The declarations related to immovable memory handling are put out of the BOOT_COMPRESSED_MISC_H #ifdef scope, wrap them inside. Signed-off-by: Baoquan He --- v2->v3: Add code comment to clearly note the end of the ifdeffery for better code reading. v1->v2: Add the lost line which could be m