svn commit: r188385 - head/sys/kern

Ed Schouten ed at FreeBSD.org
Mon Feb 9 03:28:07 PST 2009


Author: ed
Date: Mon Feb  9 11:27:56 2009
New Revision: 188385
URL: http://svn.freebsd.org/changeset/base/188385

Log:
  Remove a stale comment from the clists code.
  
  We don't support quote bits.

Modified:
  head/sys/kern/subr_clist.c

Modified: head/sys/kern/subr_clist.c
==============================================================================
--- head/sys/kern/subr_clist.c	Mon Feb  9 10:28:16 2009	(r188384)
+++ head/sys/kern/subr_clist.c	Mon Feb  9 11:27:56 2009	(r188385)
@@ -85,10 +85,6 @@ cblock_alloc_cblocks(int number)
 
 	for (i = 0; i < number; ++i) {
 		cbp = malloc(sizeof *cbp, M_CLIST, M_WAITOK);
-		/*
-		 * Freed cblocks have zero quotes and garbage elsewhere.
-		 * Set the may-have-quote bit to force zeroing the quotes.
-		 */
 		cblock_free(cbp);
 	}
 }


More information about the svn-src-head mailing list