Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Feb 2009 07:53:51 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188062 - head/sys/kern
Message-ID:  <200902030753.n137rp0A021504@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902030753.n137rp0A021504>