From 1719ca2feb94b7043c74bb83a1da5dd007a00a6d Mon Sep 17 00:00:00 2001 From: uwe Date: Tue, 20 Jun 2017 23:20:01 +0000 Subject: [PATCH] Use vmspace::vm_minsaddr instead of hardcoding USRSTACK. Requested by joerg@. --- sys/arch/sh3/sh3/exception.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/sh3/sh3/exception.c b/sys/arch/sh3/sh3/exception.c index e0308ec55f2a..383af5b5b4bc 100644 --- a/sys/arch/sh3/sh3/exception.c +++ b/sys/arch/sh3/sh3/exception.c @@ -1,4 +1,4 @@ -/* $NetBSD: exception.c,v 1.64 2015/03/04 09:39:26 skrll Exp $ */ +/* $NetBSD: exception.c,v 1.65 2017/06/20 23:20:01 uwe Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. All rights reserved. @@ -79,7 +79,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: exception.c,v 1.64 2015/03/04 09:39:26 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: exception.c,v 1.65 2017/06/20 23:20:01 uwe Exp $"); #include "opt_ddb.h" #include "opt_kgdb.h" @@ -393,11 +393,11 @@ tlb_exception(struct lwp *l, struct trapframe *tf, uint32_t va) /* User stack extension */ if (map != kernel_map && (va >= (vaddr_t)l->l_proc->p_vmspace->vm_maxsaddr) && - (va < USRSTACK)) { + (va < (vaddr_t)l->l_proc->p_vmspace->vm_minsaddr)) { if (err == 0) { struct vmspace *vm = l->l_proc->p_vmspace; uint32_t nss; - nss = btoc(USRSTACK - va); + nss = btoc((vaddr_t)vm->vm_minsaddr - va); if (nss > vm->vm_ssize) vm->vm_ssize = nss; } else if (err == EACCES) {