Messages in this thread Patch in this message |  | | | Subject | Trivial Comment Patch: 2.6.6-mm3 | | From | Danny Cox <> | | Date | Tue, 18 May 2004 09:08:57 -0400 | |
Andrew,
This fixes a comment in the stack overflow check that's wrong with 4K
stacks.
Sorry to attach it, but Evolution screws up the lines if it's inline.
Thanks!
--
Daniel S. Cox
Electronic Commerce Systems
--- irq.c.orig 2004-05-18 08:53:05.363390440 -0400
+++ irq.c 2004-05-18 08:53:25.052755701 -0400
@@ -431,7 +431,7 @@
irq_enter();
#ifdef CONFIG_DEBUG_STACKOVERFLOW
- /* Debugging check for stack overflow: is there less than 1KB free? */
+ /* Debugging check for stack overflow: is there less than 512B free? */
{
long esp;
|  |