Date: Wed, 11 Jun 2008 00:23:07 GMT From: Julian Elischer <julian@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 143271 for review Message-ID: <200806110023.m5B0N7Vi077460@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=143271 Change 143271 by julian@julian_trafmon1 on 2008/06/11 00:23:05 things that needed to be fixed to get LINT to compile Affected files ... .. //depot/projects/vimage-commit2/src/sys/contrib/pf/net/if_pfsync.c#2 edit .. //depot/projects/vimage-commit2/src/sys/net/if_enc.c#2 edit .. //depot/projects/vimage-commit2/src/sys/netinet/tcp_debug.c#2 edit .. //depot/projects/vimage-commit2/src/sys/netipsec/ipsec.c#3 edit .. //depot/projects/vimage-commit2/src/sys/security/mac/mac_net.c#3 edit .. //depot/projects/vimage-commit2/src/sys/security/mac/mac_socket.c#2 edit Differences ... ==== //depot/projects/vimage-commit2/src/sys/contrib/pf/net/if_pfsync.c#2 (text+ko) ==== @@ -73,6 +73,7 @@ #include <sys/lock.h> #include <sys/mutex.h> #include <sys/sysctl.h> +#include <sys/vimage.h> #else #include <sys/ioctl.h> #include <sys/timeout.h> ==== //depot/projects/vimage-commit2/src/sys/net/if_enc.c#2 (text+ko) ==== @@ -38,6 +38,7 @@ #include <sys/socket.h> #include <sys/sockio.h> #include <sys/sysctl.h> +#include <sys/vimage.h> #include <net/if.h> #include <net/if_clone.h> ==== //depot/projects/vimage-commit2/src/sys/netinet/tcp_debug.c#2 (text+ko) ==== @@ -57,6 +57,7 @@ #include <sys/mutex.h> #include <sys/protosw.h> #include <sys/socket.h> +#include <sys/vimage.h> #include <netinet/in.h> #include <netinet/in_systm.h> ==== //depot/projects/vimage-commit2/src/sys/netipsec/ipsec.c#3 (text+ko) ==== @@ -53,6 +53,7 @@ #include <sys/syslog.h> #include <sys/sysctl.h> #include <sys/proc.h> +#include <sys/vimage.h> #include <net/if.h> #include <net/route.h> ==== //depot/projects/vimage-commit2/src/sys/security/mac/mac_net.c#3 (text+ko) ==== @@ -265,7 +265,7 @@ { int error; - MAC_EXTERNALIZE(V_ifnet, label, elements, outbuf, outbuflen); + MAC_EXTERNALIZE(ifnet, label, elements, outbuf, outbuflen); return (error); } @@ -275,7 +275,7 @@ { int error; - MAC_INTERNALIZE(V_ifnet, label, string); + MAC_INTERNALIZE(ifnet, label, string); return (error); } ==== //depot/projects/vimage-commit2/src/sys/security/mac/mac_socket.c#2 (text+ko) ==== @@ -58,6 +58,7 @@ #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/sysctl.h> +#include <sys/vimage.h> #include <net/bpfdesc.h> #include <net/if.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200806110023.m5B0N7Vi077460>