Re: [PATCH 2.6.21 2/3] x86_64 EFI64 support Try #2

2007-07-03 Thread Andrew Morton
On Mon, 02 Jul 2007 10:06:16 -0700 Chandramouli Narayanan <[EMAIL PROTECTED]> wrote: > EFI x86_64 support Patch 2 of 3 (try #2) > > - E820 conversion integration implemented > - A way to override machine_emergency_restart is implemented so that > EFI

Re: [PATCH 2.6.21 2/3] x86_64 EFI64 support Try #2

2007-07-03 Thread Andrew Morton
On Mon, 02 Jul 2007 10:06:16 -0700 Chandramouli Narayanan [EMAIL PROTECTED] wrote: EFI x86_64 support Patch 2 of 3 (try #2) - E820 conversion integration implemented - A way to override machine_emergency_restart is implemented so that EFI support

[PATCH 2.6.21 2/3] x86_64 EFI64 support Try #2

2007-07-02 Thread Chandramouli Narayanan
EFI x86_64 support Patch 2 of 3 (try #2) - E820 conversion integration implemented - A way to override machine_emergency_restart is implemented so that EFI support can provide its own implementation. - The variable efi_enabled is still retained as it is

[PATCH 2.6.21 2/3] x86_64 EFI64 support Try #2

2007-07-02 Thread Chandramouli Narayanan
EFI x86_64 support Patch 2 of 3 (try #2) - E820 conversion integration implemented - A way to override machine_emergency_restart is implemented so that EFI support can provide its own implementation. - The variable efi_enabled is still retained as it is

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-06-01 Thread Eric W. Biederman
Chandramouli Narayanan <[EMAIL PROTECTED]> writes: > diff -uprN -X linux-2.6.21rc7-git2-orig/Documentation/dontdiff > linux-2.6.21rc7-git2-orig/arch/x86_64/kernel/reboot.c > linux-2.6.21rc7-git2-uefi-finaltest/arch/x86_64/kernel/reboot.c > --- linux-2.6.21rc7-git2-orig/arch/x86_64/kernel/reboot.c

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-06-01 Thread Eric W. Biederman
Chandramouli Narayanan [EMAIL PROTECTED] writes: diff -uprN -X linux-2.6.21rc7-git2-orig/Documentation/dontdiff linux-2.6.21rc7-git2-orig/arch/x86_64/kernel/reboot.c linux-2.6.21rc7-git2-uefi-finaltest/arch/x86_64/kernel/reboot.c --- linux-2.6.21rc7-git2-orig/arch/x86_64/kernel/reboot.c

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread chandramouli narayanan
Andi Kleen wrote: if (type && ei->type != type) @@ -148,6 +178,29 @@ int __init e820_all_mapped(unsigned long unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size) { int i; + if (efi_enabled) { + efi_memory_desc_t *md; Please

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread Andi Kleen
> if (type && ei->type != type) > @@ -148,6 +178,29 @@ int __init e820_all_mapped(unsigned long > unsigned long __init find_e820_area(unsigned long start, unsigned long end, > unsigned size) > { > int i; > + if (efi_enabled) { > + efi_memory_desc_t *md;

[PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread Chandramouli Narayanan
EFI x86_64 support Patch 2 of 3 --- The patch depends on EFI x86_64 patch 1/3. EFI initialization and memory map set up are done. It should be noted that support for user-defined memory is not yet implemented. Time and reboot services go through the EFI service call

[PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread Chandramouli Narayanan
EFI x86_64 support Patch 2 of 3 --- The patch depends on EFI x86_64 patch 1/3. EFI initialization and memory map set up are done. It should be noted that support for user-defined memory is not yet implemented. Time and reboot services go through the EFI service call

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread Andi Kleen
if (type ei-type != type) @@ -148,6 +178,29 @@ int __init e820_all_mapped(unsigned long unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size) { int i; + if (efi_enabled) { + efi_memory_desc_t *md; Please

Re: [PATCH 2.6.21 2/3] x86_64: EFI64 support

2007-05-02 Thread chandramouli narayanan
Andi Kleen wrote: if (type ei-type != type) @@ -148,6 +178,29 @@ int __init e820_all_mapped(unsigned long unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size) { int i; + if (efi_enabled) { + efi_memory_desc_t *md; Please