svn commit: r187720 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb kern

John Baldwin jhb at FreeBSD.org
Mon Jan 26 07:39:44 PST 2009


Author: jhb
Date: Mon Jan 26 15:39:42 2009
New Revision: 187720
URL: http://svn.freebsd.org/changeset/base/187720

Log:
  MFC: Use the correct type for the timeout parameter to the 32-bit
  compat version aio_waitcomplete().

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/kern/vfs_aio.c

Modified: stable/7/sys/kern/vfs_aio.c
==============================================================================
--- stable/7/sys/kern/vfs_aio.c	Mon Jan 26 15:32:39 2009	(r187719)
+++ stable/7/sys/kern/vfs_aio.c	Mon Jan 26 15:39:42 2009	(r187720)
@@ -2824,7 +2824,7 @@ int
 freebsd32_aio_waitcomplete(struct thread *td,
     struct freebsd32_aio_waitcomplete_args *uap)
 {
-	struct timespec ts32;
+	struct timespec32 ts32;
 	struct timespec ts, *tsp;
 	int error;
 


More information about the svn-src-stable-7 mailing list