svn commit: r206344 - stable/8/sys/compat/freebsd32
Konstantin Belousov
kib at FreeBSD.org
Wed Apr 7 14:09:30 UTC 2010
Author: kib
Date: Wed Apr 7 14:09:29 2010
New Revision: 206344
URL: http://svn.freebsd.org/changeset/base/206344
Log:
MFC r205319:
Make freebsd32_copyiniov() available outside of freebsd32_misc.
Modified:
stable/8/sys/compat/freebsd32/freebsd32_misc.c
stable/8/sys/compat/freebsd32/freebsd32_util.h
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_misc.c Wed Apr 7 13:21:52 2010 (r206343)
+++ stable/8/sys/compat/freebsd32/freebsd32_misc.c Wed Apr 7 14:09:29 2010 (r206344)
@@ -873,7 +873,7 @@ freebsd32_pwritev(struct thread *td, str
return (error);
}
-static int
+int
freebsd32_copyiniov(struct iovec32 *iovp32, u_int iovcnt, struct iovec **iovp,
int error)
{
Modified: stable/8/sys/compat/freebsd32/freebsd32_util.h
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_util.h Wed Apr 7 13:21:52 2010 (r206343)
+++ stable/8/sys/compat/freebsd32/freebsd32_util.h Wed Apr 7 14:09:29 2010 (r206344)
@@ -84,5 +84,8 @@ int syscall32_deregister(int *offset,
int syscall32_module_handler(struct module *mod, int what, void *arg);
register_t *freebsd32_copyout_strings(struct image_params *imgp);
+struct iovec32;
+int freebsd32_copyiniov(struct iovec32 *iovp, u_int iovcnt,
+ struct iovec **iov, int error);
#endif /* !_COMPAT_FREEBSD32_FREEBSD32_UTIL_H_ */
More information about the svn-src-stable-8
mailing list