Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hppa/hppa Simplify userret function signature. Fro...



details:   https://anonhg.NetBSD.org/src/rev/a7d78d5c1b32
branches:  trunk
changeset: 465883:a7d78d5c1b32
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Dec 06 08:40:33 2019 +0000

description:
Simplify userret function signature.  From ad@

diffstat:

 sys/arch/hppa/hppa/trap.c |  20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diffs (83 lines):

diff -r 6c0842c1b5f1 -r a7d78d5c1b32 sys/arch/hppa/hppa/trap.c
--- a/sys/arch/hppa/hppa/trap.c Fri Dec 06 08:35:21 2019 +0000
+++ b/sys/arch/hppa/hppa/trap.c Fri Dec 06 08:40:33 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.113 2019/11/29 18:27:32 ad Exp $    */
+/*     $NetBSD: trap.c,v 1.114 2019/12/06 08:40:33 skrll Exp $ */
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.113 2019/11/29 18:27:32 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.114 2019/12/06 08:40:33 skrll Exp $");
 
 /* #define INTRDEBUG */
 /* #define TRAPDEBUG */
@@ -198,9 +198,10 @@
 #endif
 
 static inline void
-userret(struct lwp *l, register_t pc, u_quad_t oticks)
+userret(struct lwp *l, struct trapframe *tf)
 {
        struct proc *p = l->l_proc;
+       int oticks = 0; /* XXX why zero? */
 
        do {
                l->l_md.md_astpending = 0;
@@ -214,7 +215,8 @@
        if (p->p_stflag & PST_PROFIL) {
                extern int psratio;
 
-               addupc_task(l, pc, (int)(p->p_sticks - oticks) * psratio);
+               addupc_task(l, tf->tf_iioq_head,
+                   (int)(p->p_sticks - oticks) * psratio);
        }
 }
 
@@ -962,7 +964,7 @@
 #endif
 
        if (type & T_USER)
-               userret(l, l->l_md.md_regs->tf_iioq_head, 0);
+               userret(l, l->l_md.md_regs);
 
 #ifdef DEBUG
        frame_sanity_check(__func__, __LINE__, type, frame, l);
@@ -979,7 +981,7 @@
         * Return values in the frame set by cpu_lwp_fork().
         */
 
-       userret(l, l->l_md.md_regs->tf_iioq_head, 0);
+       userret(l, l->l_md.md_regs);
 #ifdef DEBUG
        frame_sanity_check(__func__, __LINE__, 0, l->l_md.md_regs, l);
 #endif /* DEBUG */
@@ -992,7 +994,7 @@
 cpu_spawn_return(struct lwp *l)
 {
 
-       userret(l, l->l_md.md_regs->tf_iioq_head, 0);
+       userret(l, l->l_md.md_regs);
 #ifdef DEBUG
        frame_sanity_check(__func__, __LINE__, 0, l->l_md.md_regs, l);
 #endif /* DEBUG */
@@ -1264,7 +1266,7 @@
                break;
        }
 
-       userret(l, frame->tf_iioq_head, 0);
+       userret(l, frame);
 
 #ifdef DIAGNOSTIC
        if (ci->ci_cpl != oldcpl) {
@@ -1294,5 +1296,5 @@
        KASSERT(error == 0);
 
        kmem_free(uc, sizeof(ucontext_t));
-       userret(l, l->l_md.md_regs->tf_iioq_head, 0);
+       userret(l, l->l_md.md_regs);
 }



Home | Main Index | Thread Index | Old Index