Date: Mon, 26 Jan 2009 15:39:42 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r187720 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb kern Message-ID: <200901261539.n0QFdg1G054496@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901261539.n0QFdg1G054496>