svn commit: r237084 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Thu Jun 14 17:32:59 UTC 2012


Author: pjd
Date: Thu Jun 14 17:32:58 2012
New Revision: 237084
URL: http://svn.freebsd.org/changeset/base/237084

Log:
  Update comment.
  
  MFC after:	1 month

Modified:
  head/sys/kern/kern_event.c

Modified: head/sys/kern/kern_event.c
==============================================================================
--- head/sys/kern/kern_event.c	Thu Jun 14 16:53:08 2012	(r237083)
+++ head/sys/kern/kern_event.c	Thu Jun 14 17:32:58 2012	(r237084)
@@ -692,7 +692,7 @@ sys_kqueue(struct thread *td, struct kqu
 	if (error)
 		goto done2;
 
-	/* An extra reference on `nfp' has been held for us by falloc(). */
+	/* An extra reference on `fp' has been held for us by falloc(). */
 	kq = malloc(sizeof *kq, M_KQUEUE, M_WAITOK | M_ZERO);
 	mtx_init(&kq->kq_lock, "kqueue", NULL, MTX_DEF|MTX_DUPOK);
 	TAILQ_INIT(&kq->kq_head);


More information about the svn-src-all mailing list