summaryrefslogtreecommitdiffstats
path: root/sys/powerpc/aim/trap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/powerpc/aim/trap.c')
-rw-r--r--sys/powerpc/aim/trap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/powerpc/aim/trap.c b/sys/powerpc/aim/trap.c
index 2b2d746..1de9b05 100644
--- a/sys/powerpc/aim/trap.c
+++ b/sys/powerpc/aim/trap.c
@@ -492,13 +492,13 @@ trap_pfault(struct trapframe *frame, int user)
/*
* Grow the stack if necessary
*/
- /* grow_stack returns false only if va falls into
+ /* vm_map_growstack returns failure only if va falls into
* a growable stack region and the stack growth
- * fails. It returns true if va was not within
+ * fails. It succeeds if va was not within
* a growable stack region, or if the stack
* growth succeeded.
*/
- if (!grow_stack (p, va))
+ if (vm_map_growstack(p, va) != KERN_SUCCESS)
rv = KERN_FAILURE;
else
/* Fault in the user page: */
OpenPOWER on IntegriCloud