Module Name:    src
Committed By:   riastradh
Date:           Sun Jul 16 23:12:17 UTC 2023

Modified Files:
        src/sys/rump/librump/rumpkern: locks.c

Log Message:
rump: Fix comment to reflect l_private -> l_sched.info.

Comment was misspelled `l->private', hence didn't come up in grep.


To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 src/sys/rump/librump/rumpkern/locks.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/locks.c
diff -u src/sys/rump/librump/rumpkern/locks.c:1.85 src/sys/rump/librump/rumpkern/locks.c:1.86
--- src/sys/rump/librump/rumpkern/locks.c:1.85	Sun Jul 16 23:05:53 2023
+++ src/sys/rump/librump/rumpkern/locks.c	Sun Jul 16 23:12:17 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: locks.c,v 1.85 2023/07/16 23:05:53 riastradh Exp $	*/
+/*	$NetBSD: locks.c,v 1.86 2023/07/16 23:12:17 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2007-2011 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.85 2023/07/16 23:05:53 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.86 2023/07/16 23:12:17 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/kmem.h>
@@ -425,7 +425,7 @@ docvwait(kcondvar_t *cv, kmutex_t *mtx, 
 		KASSERT(p->p_sflag & PS_RUMP_LWPEXIT);
 		mutex_exit(p->p_lock);
 
-		/* ok, we can exit and remove "reference" to l->private */
+		/* ok, we can exit and remove "reference" to l->l_sched.info */
 
 		mutex_enter(mtx);
 		rv = EINTR;

Reply via email to