PERFORCE change 147890 for review
Julian Elischer
julian at FreeBSD.org
Wed Aug 20 06:23:47 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=147890
Change 147890 by julian at julian_trafmon1 on 2008/08/20 06:23:06
small changes toward vimage working
actually integrated from commit3
Affected files ...
.. //depot/projects/vimage/src/sys/net80211/ieee80211.c#19 integrate
.. //depot/projects/vimage/src/sys/netinet/udp_usrreq.c#31 integrate
.. //depot/projects/vimage/src/sys/netinet/vinet.h#24 integrate
.. //depot/projects/vimage/src/sys/netinet6/vinet6.h#17 integrate
Differences ...
==== //depot/projects/vimage/src/sys/net80211/ieee80211.c#19 (text+ko) ====
@@ -35,7 +35,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
-
#include <sys/socket.h>
#include <sys/vimage.h>
==== //depot/projects/vimage/src/sys/netinet/udp_usrreq.c#31 (text+ko) ====
==== //depot/projects/vimage/src/sys/netinet/vinet.h#24 (text+ko) ====
@@ -142,6 +142,7 @@
struct inpcbhead _udb;
struct inpcbinfo _udbinfo;
struct udpstat _udpstat;
+ int _udp_blackhole;
struct inpcbhead _ripcb;
struct inpcbinfo _ripcbinfo;
@@ -278,6 +279,7 @@
#define V_udb VNET_INET(udb)
#define V_udbinfo VNET_INET(udbinfo)
#define V_udpstat VNET_INET(udpstat)
+#define V_udp_blackhole VNET_INET(udp_blackhole)
#define V_ripcb VNET_INET(ripcb)
#define V_ripcbinfo VNET_INET(ripcbinfo)
==== //depot/projects/vimage/src/sys/netinet6/vinet6.h#17 (text+ko) ====
@@ -62,6 +62,9 @@
TAILQ_HEAD(, addrsel_policyent) _addrsel_policytab;
u_int _in6_maxmtu;
int _ip6_auto_linklocal;
+ int _rtq_minreallyold6;
+ int _rtq_reallyold6;
+ int _rtq_toomany6;
struct ip6stat _ip6stat;
struct rip6stat _rip6stat;
@@ -173,6 +176,10 @@
#define V_in6_maxmtu VNET_INET6(in6_maxmtu)
#define V_ip6_auto_linklocal VNET_INET6(ip6_auto_linklocal)
+#define V_rtq_minreallyold6 VNET_INET6(rtq_minreallyold6)
+#define V_rtq_reallyold6 VNET_INET6(rtq_reallyold6)
+#define V_rtq_toomany6 VNET_INET6(rtq_toomany6)
+
#define V_ip6stat VNET_INET6(ip6stat)
#define V_rip6stat VNET_INET6(rip6stat)
#define V_icmp6stat VNET_INET6(icmp6stat)
More information about the p4-projects
mailing list