diff options
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/ip_vs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/net/netns/ip_vs.h b/include/net/netns/ip_vs.h index 62b1448d3795..58bd3fd85a97 100644 --- a/include/net/netns/ip_vs.h +++ b/include/net/netns/ip_vs.h | |||
@@ -47,6 +47,15 @@ struct netns_ipvs { | |||
47 | struct list_head udp_apps[UDP_APP_TAB_SIZE]; | 47 | struct list_head udp_apps[UDP_APP_TAB_SIZE]; |
48 | spinlock_t udp_app_lock; | 48 | spinlock_t udp_app_lock; |
49 | #endif | 49 | #endif |
50 | /* ip_vs_proto_sctp */ | ||
51 | #ifdef CONFIG_IP_VS_PROTO_SCTP | ||
52 | #define SCTP_APP_TAB_BITS 4 | ||
53 | #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS) | ||
54 | #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1) | ||
55 | /* Hash table for SCTP application incarnations */ | ||
56 | struct list_head sctp_apps[SCTP_APP_TAB_SIZE]; | ||
57 | spinlock_t sctp_app_lock; | ||
58 | #endif | ||
50 | 59 | ||
51 | /* ip_vs_lblc */ | 60 | /* ip_vs_lblc */ |
52 | int sysctl_lblc_expiration; | 61 | int sysctl_lblc_expiration; |