Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/powerpc Need to call userret() from cpu_ast().



details:   https://anonhg.NetBSD.org/src/rev/5993dcd736c0
branches:  trunk
changeset: 465870:5993dcd736c0
user:      ad <ad%NetBSD.org@localhost>
date:      Thu Dec 05 20:55:24 2019 +0000

description:
Need to call userret() from cpu_ast().

diffstat:

 sys/arch/powerpc/powerpc/powerpc_machdep.c |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (36 lines):

diff -r 3c67ac0bad8d -r 5993dcd736c0 sys/arch/powerpc/powerpc/powerpc_machdep.c
--- a/sys/arch/powerpc/powerpc/powerpc_machdep.c        Thu Dec 05 20:25:54 2019 +0000
+++ b/sys/arch/powerpc/powerpc/powerpc_machdep.c        Thu Dec 05 20:55:24 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: powerpc_machdep.c,v 1.74 2019/11/23 19:40:36 ad Exp $  */
+/*     $NetBSD: powerpc_machdep.c,v 1.75 2019/12/05 20:55:24 ad Exp $  */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.74 2019/11/23 19:40:36 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.75 2019/12/05 20:55:24 ad Exp $");
 
 #include "opt_altivec.h"
 #include "opt_ddb.h"
@@ -373,6 +373,8 @@
 cpu_ast(struct lwp *l, struct cpu_info *ci)
 {
        l->l_md.md_astpending = 0;      /* we are about to do it */
+       __insn_barrier();
+       userret(l, l->l_md.md_utf);
 
        if (l->l_pflag & LP_OWEUPC) {
                l->l_pflag &= ~LP_OWEUPC;
@@ -400,7 +402,7 @@
                cpu_send_ipi(cpu_index(ci), IPI_AST);
 #endif
        } else {
-               l->l_md.md_astpending = 1;              /* force call to ast() */
+               l->l_md.md_astpending = 1;      /* force call to cpu_ast() */
        }
 }
 



Home | Main Index | Thread Index | Old Index