From owner-p4-projects@FreeBSD.ORG Sat Nov 4 01:26:15 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0944016A4DF; Sat, 4 Nov 2006 01:26:15 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C449316A4C8 for ; Sat, 4 Nov 2006 01:26:14 +0000 (UTC) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BEDB43D76 for ; Sat, 4 Nov 2006 01:26:09 +0000 (GMT) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kA41Q9Tm050870 for ; Sat, 4 Nov 2006 01:26:09 GMT (envelope-from jb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kA41Q9PR050867 for perforce@freebsd.org; Sat, 4 Nov 2006 01:26:09 GMT (envelope-from jb@freebsd.org) Date: Sat, 4 Nov 2006 01:26:09 GMT Message-Id: <200611040126.kA41Q9PR050867@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jb@freebsd.org using -f From: John Birrell To: Perforce Change Reviews Cc: Subject: PERFORCE change 109187 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 01:26:15 -0000 http://perforce.freebsd.org/chv.cgi?CH=109187 Change 109187 by jb@jb_freebsd8 on 2006/11/04 01:25:57 Reset to match current. Affected files ... .. //depot/projects/dtrace/src/sys/arm/arm/vm_machdep.c#8 edit Differences ... ==== //depot/projects/dtrace/src/sys/arm/arm/vm_machdep.c#8 (text+ko) ==== @@ -266,7 +266,8 @@ * Initialize machine state (pcb and trap frame) for a new thread about to * upcall. Put enough state in the new thread's PCB to get it to go back * userret(), where we can intercept it again to set the return (upcall) - * Address and stack, along with those from upcals that are from other sources. + * Address and stack, along with those from upcals that are from other sources + * such as those generated in thread_userret() itself. */ void cpu_set_upcall(struct thread *td, struct thread *td0) @@ -292,8 +293,9 @@ } /* - * Modify the machine state created by cpu_set_upcall() to arrange - * for the new thread to make a specific call as its first act. + * Set that machine state for performing an upcall that has to + * be done in thread_userret() so that those upcalls generated + * in thread_userret() itself can be done as well. */ void cpu_set_upcall_kse(struct thread *td, void (*entry)(void *), void *arg,