diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/etherdevice.h | 1 | ||||
| -rw-r--r-- | include/linux/in6.h | 2 | ||||
| -rw-r--r-- | include/linux/netlink.h | 1 | ||||
| -rw-r--r-- | include/linux/pkt_cls.h | 1 | ||||
| -rw-r--r-- | include/linux/pkt_sched.h | 9 | ||||
| -rw-r--r-- | include/linux/rtnetlink.h | 10 | ||||
| -rw-r--r-- | include/linux/sysctl.h | 1 | ||||
| -rw-r--r-- | include/net/ipv6.h | 1 | ||||
| -rw-r--r-- | include/net/sctp/constants.h | 18 | ||||
| -rw-r--r-- | include/net/sctp/structs.h | 4 |
10 files changed, 27 insertions, 21 deletions
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index 8a2df4dfbc59..cf3847edc50f 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #define _LINUX_ETHERDEVICE_H | 25 | #define _LINUX_ETHERDEVICE_H |
| 26 | 26 | ||
| 27 | #include <linux/if_ether.h> | 27 | #include <linux/if_ether.h> |
| 28 | #include <linux/netdevice.h> | ||
| 28 | #include <linux/random.h> | 29 | #include <linux/random.h> |
| 29 | 30 | ||
| 30 | #ifdef __KERNEL__ | 31 | #ifdef __KERNEL__ |
diff --git a/include/linux/in6.h b/include/linux/in6.h index f8256c582845..dcf5720ffcbb 100644 --- a/include/linux/in6.h +++ b/include/linux/in6.h | |||
| @@ -156,7 +156,7 @@ struct in6_flowlabel_req | |||
| 156 | #define IPV6_CHECKSUM 7 | 156 | #define IPV6_CHECKSUM 7 |
| 157 | #define IPV6_HOPLIMIT 8 | 157 | #define IPV6_HOPLIMIT 8 |
| 158 | #define IPV6_NEXTHOP 9 | 158 | #define IPV6_NEXTHOP 9 |
| 159 | #define IPV6_AUTHHDR 10 | 159 | #define IPV6_AUTHHDR 10 /* obsolete */ |
| 160 | #define IPV6_FLOWINFO 11 | 160 | #define IPV6_FLOWINFO 11 |
| 161 | 161 | ||
| 162 | #define IPV6_UNICAST_HOPS 16 | 162 | #define IPV6_UNICAST_HOPS 16 |
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 3029cad63a01..27e4d164a108 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
| @@ -168,6 +168,7 @@ __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags) | |||
| 168 | nlh->nlmsg_flags = flags; | 168 | nlh->nlmsg_flags = flags; |
| 169 | nlh->nlmsg_pid = pid; | 169 | nlh->nlmsg_pid = pid; |
| 170 | nlh->nlmsg_seq = seq; | 170 | nlh->nlmsg_seq = seq; |
| 171 | memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size); | ||
| 171 | return nlh; | 172 | return nlh; |
| 172 | } | 173 | } |
| 173 | 174 | ||
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index 25d2d67c1faf..bd2c5a2bbbf5 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h | |||
| @@ -276,6 +276,7 @@ struct tc_rsvp_pinfo | |||
| 276 | __u8 protocol; | 276 | __u8 protocol; |
| 277 | __u8 tunnelid; | 277 | __u8 tunnelid; |
| 278 | __u8 tunnelhdr; | 278 | __u8 tunnelhdr; |
| 279 | __u8 pad; | ||
| 279 | }; | 280 | }; |
| 280 | 281 | ||
| 281 | /* ROUTE filter */ | 282 | /* ROUTE filter */ |
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h index 1d9da36eb9db..60ffcb9c5791 100644 --- a/include/linux/pkt_sched.h +++ b/include/linux/pkt_sched.h | |||
| @@ -221,9 +221,11 @@ struct tc_gred_qopt | |||
| 221 | /* gred setup */ | 221 | /* gred setup */ |
| 222 | struct tc_gred_sopt | 222 | struct tc_gred_sopt |
| 223 | { | 223 | { |
| 224 | __u32 DPs; | 224 | __u32 DPs; |
| 225 | __u32 def_DP; | 225 | __u32 def_DP; |
| 226 | __u8 grio; | 226 | __u8 grio; |
| 227 | __u8 pad1; | ||
| 228 | __u16 pad2; | ||
| 227 | }; | 229 | }; |
| 228 | 230 | ||
| 229 | /* HTB section */ | 231 | /* HTB section */ |
| @@ -351,6 +353,7 @@ struct tc_cbq_ovl | |||
| 351 | #define TC_CBQ_OVL_DROP 3 | 353 | #define TC_CBQ_OVL_DROP 3 |
| 352 | #define TC_CBQ_OVL_RCLASSIC 4 | 354 | #define TC_CBQ_OVL_RCLASSIC 4 |
| 353 | unsigned char priority2; | 355 | unsigned char priority2; |
| 356 | __u16 pad; | ||
| 354 | __u32 penalty; | 357 | __u32 penalty; |
| 355 | }; | 358 | }; |
| 356 | 359 | ||
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index d021888b58f1..657c05ab8f9e 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
| @@ -363,6 +363,8 @@ enum | |||
| 363 | struct rta_session | 363 | struct rta_session |
| 364 | { | 364 | { |
| 365 | __u8 proto; | 365 | __u8 proto; |
| 366 | __u8 pad1; | ||
| 367 | __u16 pad2; | ||
| 366 | 368 | ||
| 367 | union { | 369 | union { |
| 368 | struct { | 370 | struct { |
| @@ -635,10 +637,13 @@ struct ifinfomsg | |||
| 635 | struct prefixmsg | 637 | struct prefixmsg |
| 636 | { | 638 | { |
| 637 | unsigned char prefix_family; | 639 | unsigned char prefix_family; |
| 640 | unsigned char prefix_pad1; | ||
| 641 | unsigned short prefix_pad2; | ||
| 638 | int prefix_ifindex; | 642 | int prefix_ifindex; |
| 639 | unsigned char prefix_type; | 643 | unsigned char prefix_type; |
| 640 | unsigned char prefix_len; | 644 | unsigned char prefix_len; |
| 641 | unsigned char prefix_flags; | 645 | unsigned char prefix_flags; |
| 646 | unsigned char prefix_pad3; | ||
| 642 | }; | 647 | }; |
| 643 | 648 | ||
| 644 | enum | 649 | enum |
| @@ -898,7 +903,9 @@ extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const voi | |||
| 898 | memcpy(skb_put(skb, attrlen), data, attrlen); }) | 903 | memcpy(skb_put(skb, attrlen), data, attrlen); }) |
| 899 | 904 | ||
| 900 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | 905 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ |
| 901 | RTA_APPEND(skb, RTA_ALIGN(attrlen), data) | 906 | ({ RTA_APPEND(skb, RTA_ALIGN(attrlen), data); \ |
| 907 | memset(skb->tail - (RTA_ALIGN(attrlen) - attrlen), 0, \ | ||
| 908 | RTA_ALIGN(attrlen) - attrlen); }) | ||
| 902 | 909 | ||
| 903 | #define RTA_PUT_U8(skb, attrtype, value) \ | 910 | #define RTA_PUT_U8(skb, attrtype, value) \ |
| 904 | ({ u8 _tmp = (value); \ | 911 | ({ u8 _tmp = (value); \ |
| @@ -978,6 +985,7 @@ __rta_reserve(struct sk_buff *skb, int attrtype, int attrlen) | |||
| 978 | rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size)); | 985 | rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size)); |
| 979 | rta->rta_type = attrtype; | 986 | rta->rta_type = attrtype; |
| 980 | rta->rta_len = size; | 987 | rta->rta_len = size; |
| 988 | memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size); | ||
| 981 | return rta; | 989 | return rta; |
| 982 | } | 990 | } |
| 983 | 991 | ||
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index ebfe1250f0a4..5b5f434ac9a0 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
| @@ -641,6 +641,7 @@ enum { | |||
| 641 | NET_SCTP_ADDIP_ENABLE = 13, | 641 | NET_SCTP_ADDIP_ENABLE = 13, |
| 642 | NET_SCTP_PRSCTP_ENABLE = 14, | 642 | NET_SCTP_PRSCTP_ENABLE = 14, |
| 643 | NET_SCTP_SNDBUF_POLICY = 15, | 643 | NET_SCTP_SNDBUF_POLICY = 15, |
| 644 | NET_SCTP_SACK_TIMEOUT = 16, | ||
| 644 | }; | 645 | }; |
| 645 | 646 | ||
| 646 | /* /proc/sys/net/bridge */ | 647 | /* /proc/sys/net/bridge */ |
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 771b47e30f86..69324465e8b3 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
| @@ -183,7 +183,6 @@ struct ipv6_txoptions | |||
| 183 | struct ipv6_opt_hdr *hopopt; | 183 | struct ipv6_opt_hdr *hopopt; |
| 184 | struct ipv6_opt_hdr *dst0opt; | 184 | struct ipv6_opt_hdr *dst0opt; |
| 185 | struct ipv6_rt_hdr *srcrt; /* Routing Header */ | 185 | struct ipv6_rt_hdr *srcrt; /* Routing Header */ |
| 186 | struct ipv6_opt_hdr *auth; | ||
| 187 | struct ipv6_opt_hdr *dst1opt; | 186 | struct ipv6_opt_hdr *dst1opt; |
| 188 | 187 | ||
| 189 | /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */ | 188 | /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */ |
diff --git a/include/net/sctp/constants.h b/include/net/sctp/constants.h index 4868c7f7749d..5999e5684bbf 100644 --- a/include/net/sctp/constants.h +++ b/include/net/sctp/constants.h | |||
| @@ -263,23 +263,11 @@ enum { SCTP_MIN_PMTU = 576 }; | |||
| 263 | enum { SCTP_MAX_DUP_TSNS = 16 }; | 263 | enum { SCTP_MAX_DUP_TSNS = 16 }; |
| 264 | enum { SCTP_MAX_GABS = 16 }; | 264 | enum { SCTP_MAX_GABS = 16 }; |
| 265 | 265 | ||
| 266 | /* Here we define the default timers. */ | 266 | /* Heartbeat interval - 30 secs */ |
| 267 | #define SCTP_DEFAULT_TIMEOUT_HEARTBEAT (30 * HZ) | ||
| 267 | 268 | ||
| 268 | /* cookie timer def = ? seconds */ | 269 | /* Delayed sack timer - 200ms */ |
| 269 | #define SCTP_DEFAULT_TIMEOUT_T1_COOKIE (3 * HZ) | ||
| 270 | |||
| 271 | /* init timer def = 3 seconds */ | ||
| 272 | #define SCTP_DEFAULT_TIMEOUT_T1_INIT (3 * HZ) | ||
| 273 | |||
| 274 | /* shutdown timer def = 300 ms */ | ||
| 275 | #define SCTP_DEFAULT_TIMEOUT_T2_SHUTDOWN ((300 * HZ) / 1000) | ||
| 276 | |||
| 277 | /* 0 seconds + RTO */ | ||
| 278 | #define SCTP_DEFAULT_TIMEOUT_HEARTBEAT (10 * HZ) | ||
| 279 | |||
| 280 | /* recv timer def = 200ms (in usec) */ | ||
| 281 | #define SCTP_DEFAULT_TIMEOUT_SACK ((200 * HZ) / 1000) | 270 | #define SCTP_DEFAULT_TIMEOUT_SACK ((200 * HZ) / 1000) |
| 282 | #define SCTP_DEFAULT_TIMEOUT_SACK_MAX ((500 * HZ) / 1000) /* 500 ms */ | ||
| 283 | 271 | ||
| 284 | /* RTO.Initial - 3 seconds | 272 | /* RTO.Initial - 3 seconds |
| 285 | * RTO.Min - 1 second | 273 | * RTO.Min - 1 second |
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index dfad4d3c581c..47727c7cc628 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
| @@ -161,6 +161,9 @@ extern struct sctp_globals { | |||
| 161 | */ | 161 | */ |
| 162 | int sndbuf_policy; | 162 | int sndbuf_policy; |
| 163 | 163 | ||
| 164 | /* Delayed SACK timeout 200ms default*/ | ||
| 165 | int sack_timeout; | ||
| 166 | |||
| 164 | /* HB.interval - 30 seconds */ | 167 | /* HB.interval - 30 seconds */ |
| 165 | int hb_interval; | 168 | int hb_interval; |
| 166 | 169 | ||
| @@ -217,6 +220,7 @@ extern struct sctp_globals { | |||
| 217 | #define sctp_sndbuf_policy (sctp_globals.sndbuf_policy) | 220 | #define sctp_sndbuf_policy (sctp_globals.sndbuf_policy) |
| 218 | #define sctp_max_retrans_path (sctp_globals.max_retrans_path) | 221 | #define sctp_max_retrans_path (sctp_globals.max_retrans_path) |
| 219 | #define sctp_max_retrans_init (sctp_globals.max_retrans_init) | 222 | #define sctp_max_retrans_init (sctp_globals.max_retrans_init) |
| 223 | #define sctp_sack_timeout (sctp_globals.sack_timeout) | ||
| 220 | #define sctp_hb_interval (sctp_globals.hb_interval) | 224 | #define sctp_hb_interval (sctp_globals.hb_interval) |
| 221 | #define sctp_max_instreams (sctp_globals.max_instreams) | 225 | #define sctp_max_instreams (sctp_globals.max_instreams) |
| 222 | #define sctp_max_outstreams (sctp_globals.max_outstreams) | 226 | #define sctp_max_outstreams (sctp_globals.max_outstreams) |
