summaryrefslogtreecommitdiffstats
path: root/sys/netipsec/key.c
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2010-04-29 11:52:42 +0000
committerbz <bz@FreeBSD.org>2010-04-29 11:52:42 +0000
commit0a90ef17283bc848eee90c3bdd5bec3fcc1bc879 (patch)
treee6f9695e24617b291f2a8f0b1f388eda2e605549 /sys/netipsec/key.c
parent043deeb56455e1129861bf93ec57f03b90200344 (diff)
downloadFreeBSD-src-0a90ef17283bc848eee90c3bdd5bec3fcc1bc879.zip
FreeBSD-src-0a90ef17283bc848eee90c3bdd5bec3fcc1bc879.tar.gz
MFP4: @176978-176982, 176984, 176990-176994, 177441
"Whitspace" churn after the VIMAGE/VNET whirls. Remove the need for some "init" functions within the network stack, like pim6_init(), icmp_init() or significantly shorten others like ip6_init() and nd6_init(), using static initialization again where possible and formerly missed. Move (most) variables back to the place they used to be before the container structs and VIMAGE_GLOABLS (before r185088) and try to reduce the diff to stable/7 and earlier as good as possible, to help out-of-tree consumers to update from 6.x or 7.x to 8 or 9. This also removes some header file pollution for putatively static global variables. Revert VIMAGE specific changes in ipfilter::ip_auth.c, that are no longer needed. Reviewed by: jhb Discussed with: rwatson Sponsored by: The FreeBSD Foundation Sponsored by: CK Software GmbH MFC after: 6 days
Diffstat (limited to 'sys/netipsec/key.c')
-rw-r--r--sys/netipsec/key.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/sys/netipsec/key.c b/sys/netipsec/key.c
index 2b17fb0..5219768 100644
--- a/sys/netipsec/key.c
+++ b/sys/netipsec/key.c
@@ -114,27 +114,27 @@
VNET_DEFINE(u_int32_t, key_debug_level) = 0;
static VNET_DEFINE(u_int, key_spi_trycnt) = 1000;
-#define V_key_spi_trycnt VNET(key_spi_trycnt)
static VNET_DEFINE(u_int32_t, key_spi_minval) = 0x100;
-#define V_key_spi_minval VNET(key_spi_minval)
static VNET_DEFINE(u_int32_t, key_spi_maxval) = 0x0fffffff; /* XXX */
-#define V_key_spi_maxval VNET(key_spi_maxval)
static VNET_DEFINE(u_int32_t, policy_id) = 0;
-#define V_policy_id VNET(policy_id)
/*interval to initialize randseed,1(m)*/
static VNET_DEFINE(u_int, key_int_random) = 60;
-#define V_key_int_random VNET(key_int_random)
/* interval to expire acquiring, 30(s)*/
static VNET_DEFINE(u_int, key_larval_lifetime) = 30;
-#define V_key_larval_lifetime VNET(key_larval_lifetime)
/* counter for blocking SADB_ACQUIRE.*/
static VNET_DEFINE(int, key_blockacq_count) = 10;
-#define V_key_blockacq_count VNET(key_blockacq_count)
/* lifetime for blocking SADB_ACQUIRE.*/
static VNET_DEFINE(int, key_blockacq_lifetime) = 20;
-#define V_key_blockacq_lifetime VNET(key_blockacq_lifetime)
/* preferred old sa rather than new sa.*/
static VNET_DEFINE(int, key_preferred_oldsa) = 1;
+#define V_key_spi_trycnt VNET(key_spi_trycnt)
+#define V_key_spi_minval VNET(key_spi_minval)
+#define V_key_spi_maxval VNET(key_spi_maxval)
+#define V_policy_id VNET(policy_id)
+#define V_key_int_random VNET(key_int_random)
+#define V_key_larval_lifetime VNET(key_larval_lifetime)
+#define V_key_blockacq_count VNET(key_blockacq_count)
+#define V_key_blockacq_lifetime VNET(key_blockacq_lifetime)
#define V_key_preferred_oldsa VNET(key_preferred_oldsa)
static VNET_DEFINE(u_int32_t, acq_seq) = 0;
@@ -270,10 +270,11 @@ static const int maxsize[] = {
};
static VNET_DEFINE(int, ipsec_esp_keymin) = 256;
-#define V_ipsec_esp_keymin VNET(ipsec_esp_keymin)
static VNET_DEFINE(int, ipsec_esp_auth) = 0;
-#define V_ipsec_esp_auth VNET(ipsec_esp_auth)
static VNET_DEFINE(int, ipsec_ah_keymin) = 128;
+
+#define V_ipsec_esp_keymin VNET(ipsec_esp_keymin)
+#define V_ipsec_esp_auth VNET(ipsec_esp_auth)
#define V_ipsec_ah_keymin VNET(ipsec_ah_keymin)
#ifdef SYSCTL_DECL
OpenPOWER on IntegriCloud