[PATCH] syslets demo - fix malloc failure check

From: Jeff Dike
Date: Sun Jun 03 2007 - 13:23:59 EST


Fix the stack malloc failure check.

Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxxxxxx>
--
syslets/async-test-v5/sys.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-2.6/syslets/async-test-v5/sys.h
===================================================================
--- linux-2.6.orig/syslets/async-test-v5/sys.h 2007-05-31 13:29:57.000000000 -0400
+++ linux-2.6/syslets/async-test-v5/sys.h 2007-06-03 13:12:43.000000000 -0400
@@ -108,9 +108,10 @@ static u64 completion_ring[MAX_PENDING];

static unsigned long thread_stack_alloc()
{
- void *stack = malloc(THREAD_STACK_SIZE) + THREAD_STACK_SIZE;
+ void *stack = malloc(THREAD_STACK_SIZE);
assert(stack != NULL);

+ stack += THREAD_STACK_SIZE;
pr("allocated stack: %p\n", stack);

return (unsigned long)stack;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/