svn commit: r188062 - head/sys/kern

Warner Losh imp at FreeBSD.org
Mon Feb 2 23:53:52 PST 2009


Author: imp
Date: Tue Feb  3 07:53:51 2009
New Revision: 188062
URL: http://svn.freebsd.org/changeset/base/188062

Log:
  Make bioq_disksort have a ANSI-C definition rather than a K&R definition.

Modified:
  head/sys/kern/subr_disk.c

Modified: head/sys/kern/subr_disk.c
==============================================================================
--- head/sys/kern/subr_disk.c	Tue Feb  3 07:53:08 2009	(r188061)
+++ head/sys/kern/subr_disk.c	Tue Feb  3 07:53:51 2009	(r188062)
@@ -144,9 +144,7 @@ bioq_takefirst(struct bio_queue_head *he
  * This implements the one-way scan which optimizes disk seek times.
  */
 void
-bioq_disksort(bioq, bp)
-	struct bio_queue_head *bioq;
-	struct bio *bp;
+bioq_disksort(struct bio_queue_head *bioq, struct bio *bp)
 {
 	struct bio *bq;
 	struct bio *bn;


More information about the svn-src-all mailing list