Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Jun 2002 12:02:04 -0700 (PDT)
From:      Julian Elischer <julian@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 12931 for review
Message-ID:  <200206141902.g5EJ24e34791@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206141902.g5EJ24e34791>