diff options
author | zec <zec@FreeBSD.org> | 2009-04-26 22:06:42 +0000 |
---|---|---|
committer | zec <zec@FreeBSD.org> | 2009-04-26 22:06:42 +0000 |
commit | 8d976eab5c2cbc080800be588a8572ebec4a7795 (patch) | |
tree | 1c2ccb403d29ceb85ca7992b6b96623f561c79db /sys/compat/linux/linux_socket.c | |
parent | 1e44d091e1be67e4c879788035a2a9161eace942 (diff) | |
download | FreeBSD-src-8d976eab5c2cbc080800be588a8572ebec4a7795.zip FreeBSD-src-8d976eab5c2cbc080800be588a8572ebec4a7795.tar.gz |
In preparation for turning on options VIMAGE in next commits,
rearrange / replace / adjust several INIT_VNET_* initializer
macros, all of which currently resolve to whitespace.
Reviewed by: bz (an older version of the patch)
Approved by: julian (mentor)
Diffstat (limited to 'sys/compat/linux/linux_socket.c')
-rw-r--r-- | sys/compat/linux/linux_socket.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index af133d9..56cc92e 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -584,8 +584,10 @@ static int linux_socket(struct thread *td, struct linux_socket_args *args) { #ifdef INET6 +#ifndef KLD_MODULE INIT_VNET_INET6(curvnet); #endif +#endif struct socket_args /* { int domain; int type; |