From owner-p4-projects Fri Jun 14 12: 2:23 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9908537B40E; Fri, 14 Jun 2002 12:02:07 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C42E537B433 for ; Fri, 14 Jun 2002 12:02:04 -0700 (PDT) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g5EJ24e34791 for perforce@freebsd.org; Fri, 14 Jun 2002 12:02:04 -0700 (PDT) (envelope-from julian@freebsd.org) Date: Fri, 14 Jun 2002 12:02:04 -0700 (PDT) Message-Id: <200206141902.g5EJ24e34791@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to julian@freebsd.org using -f From: Julian Elischer Subject: PERFORCE change 12931 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=12931 Change 12931 by julian@julian_ref on 2002/06/14 12:01:06 fix more typos Affected files ... ... //depot/projects/kse/sys/i386/i386/vm_machdep.c#50 edit ... //depot/projects/kse/sys/sys/proc.h#109 edit Differences ... ==== //depot/projects/kse/sys/i386/i386/vm_machdep.c#50 (text+ko) ==== @@ -309,7 +309,7 @@ void cpu_save_upcall(struct thread *td, struct kse *newkse) { - struct trapframe *tf + struct trapframe *tf; newkse->ke_mdstorage = malloc(sizeof(struct md_store), M_TEMP, M_WAITOK); @@ -319,7 +319,7 @@ &(((struct md_store *)(newkse->ke_mdstorage))->mds_pcb); newkse->ke_frame = &(((struct md_store *)(newkse->ke_mdstorage))->mds_frame); - tf = newkse->ke_frame + tf = newkse->ke_frame; /* Copy the upcall pcb. Kernel mode & fp regs are here. */ /* XXXKSE this may be un-needed */ @@ -330,7 +330,7 @@ tf->tf_edi = 0; tf->tf_esi = 0; /* trampoline arg */ tf->tf_ebp = 0; - tf->tf_esp = (int) newkse->ke_stackbase + newkse->ke_stacksize - 16; + tf->tf_esp = (int)newkse->ke_stackbase + newkse->ke_stacksize - 16; tf->tf_ebx = 0; /* trampoline arg */ tf->tf_eip = (int)newkse->ke_upcall; } ==== //depot/projects/kse/sys/sys/proc.h#109 (text+ko) ==== @@ -370,7 +370,7 @@ void *ke_upcall; void *ke_stackbase; - u_long *ke_stacksize; + u_long ke_stacksize; void *ke_mdstorage; /* where we store the pcb and frame */ struct pcb *ke_pcb; /* the pcb saved for the upcalls */ struct trapframe *ke_frame; /* the upcall trapframe */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message