Increased kernel stack size by another page. The network boot is more

stack hungry and would previously hit the stack limit and thus cause a
double fault. Hopefully we'll be able to reduce the stack foot print at
some time.
PXE boot does now fully work.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21663 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2007-07-19 14:03:49 +00:00
parent f4da50b768
commit aeb67bdb8f

View File

@ -28,9 +28,9 @@
/** Size of the kernel stack */
#ifndef DEBUG_KERNEL_STACKS
# define KERNEL_STACK_SIZE (B_PAGE_SIZE * 2) // 8 kB
# define KERNEL_STACK_SIZE (B_PAGE_SIZE * 3) // 12 kB
#else
# define KERNEL_STACK_SIZE (B_PAGE_SIZE * 3) // 8 kB + one guard page
# define KERNEL_STACK_SIZE (B_PAGE_SIZE * 4) // 12 kB + one guard page
#endif
#define KERNEL_STACK_GUARD_PAGES 1