On Wed, 29 Mar 2000, Richard Henderson wrote:
>On Wed, Mar 29, 2000 at 06:41:38PM +0200, Andrea Arcangeli wrote:
>> This is an incremental patch that allows me to boot:
>
>Oh please. You just reverted most of the interesting changes.
As said in earlier email your interesting changes force me to hack
arch/alpha/kernel/setup.c #define PARAM if I want to change the kernel
allocation address while I was used to hack _only_
asm-alpha/system.h. That's a step backwards as far I can tell.
>
>> - start_kernel_pfn = PFN_UP(virt_to_phys(_stext));
>> +#if 0
>> + start_kernel_pfn = PFN_DOWN(virt_to_phys(_stext));
>> +#else
>> + start_kernel_pfn = 0;
>> +#endif
>
>Surely this is the only one needed if, as you claim, you can't
>reuse low memory on you machine.
I also need the patch to allow compilation. Also it seems you are not
enforcing the right address for the zero page since you are not using a
special section for the allocation. Same for the swapper_pgd.
Andrea