Author: kib
Date: Sat Apr 13 15:20:33 2013
New Revision: 249439
URL: http://svnweb.freebsd.org/changeset/base/249439

Log:
  Fix the name of the pcb member in the comments.
  
  Submitted by: Oliver Pinter <oliver.p...@gmail.com>
  MFC after:    3 days

Modified:
  head/sys/amd64/amd64/support.S
  head/sys/i386/i386/support.s

Modified: head/sys/amd64/amd64/support.S
==============================================================================
--- head/sys/amd64/amd64/support.S      Sat Apr 13 14:03:44 2013        
(r249438)
+++ head/sys/amd64/amd64/support.S      Sat Apr 13 15:20:33 2013        
(r249439)
@@ -200,9 +200,9 @@ END(fillw)
  * Access user memory from inside the kernel. These routines should be
  * the only places that do this.
  *
- * These routines set curpcb->onfault for the time they execute. When a
+ * These routines set curpcb->pcb_onfault for the time they execute. When a
  * protection violation occurs inside the functions, the trap handler
- * returns to *curpcb->onfault instead of the function.
+ * returns to *curpcb->pcb_onfault instead of the function.
  */
 
 /*

Modified: head/sys/i386/i386/support.s
==============================================================================
--- head/sys/i386/i386/support.s        Sat Apr 13 14:03:44 2013        
(r249438)
+++ head/sys/i386/i386/support.s        Sat Apr 13 15:20:33 2013        
(r249439)
@@ -262,9 +262,9 @@ END(memcpy)
  * write permissions when we are executing with EPL 0. The 486 does check
  * this if the WP bit is set in CR0, so we can use a simpler version here.
  *
- * These routines set curpcb->onfault for the time they execute. When a
+ * These routines set curpcb->pcb_onfault for the time they execute. When a
  * protection violation occurs inside the functions, the trap handler
- * returns to *curpcb->onfault instead of the function.
+ * returns to *curpcb->pcb_onfault instead of the function.
  */
 
 /*
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to