diff options
| author | Ingo Molnar <mingo@elte.hu> | 2010-03-15 03:17:33 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2010-03-15 03:17:33 -0400 |
| commit | 12b8aeee3e51654fb95a3baff2e093f2513bb87d (patch) | |
| tree | 73f78d62591b197cd53747e36a2f3d707b79a50b /net/ipv4 | |
| parent | 25268498c9e07870323aead10751b7c6e99a3a78 (diff) | |
| parent | a3d3203e4bb40f253b1541e310dc0f9305be7c84 (diff) | |
Merge branch 'linus' into timers/core
Conflicts:
Documentation/feature-removal-schedule.txt
Merge reason: Resolve the conflict, update to upstream.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'net/ipv4')
| -rw-r--r-- | net/ipv4/ip_gre.c | 7 | ||||
| -rw-r--r-- | net/ipv4/ipconfig.c | 57 | ||||
| -rw-r--r-- | net/ipv4/proc.c | 2 | ||||
| -rw-r--r-- | net/ipv4/route.c | 50 | ||||
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 15 | ||||
| -rw-r--r-- | net/ipv4/tcp_minisocks.c | 2 | ||||
| -rw-r--r-- | net/ipv4/tcp_output.c | 18 | ||||
| -rw-r--r-- | net/ipv4/tcp_timer.c | 2 | ||||
| -rw-r--r-- | net/ipv4/udp.c | 6 | ||||
| -rw-r--r-- | net/ipv4/xfrm4_policy.c | 5 |
10 files changed, 117 insertions, 47 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index c0c5274d0271..f47c9f76754b 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
| @@ -1144,12 +1144,9 @@ static int ipgre_header(struct sk_buff *skb, struct net_device *dev, | |||
| 1144 | 1144 | ||
| 1145 | if (saddr) | 1145 | if (saddr) |
| 1146 | memcpy(&iph->saddr, saddr, 4); | 1146 | memcpy(&iph->saddr, saddr, 4); |
| 1147 | 1147 | if (daddr) | |
| 1148 | if (daddr) { | ||
| 1149 | memcpy(&iph->daddr, daddr, 4); | 1148 | memcpy(&iph->daddr, daddr, 4); |
| 1150 | return t->hlen; | 1149 | if (iph->daddr) |
| 1151 | } | ||
| 1152 | if (iph->daddr && !ipv4_is_multicast(iph->daddr)) | ||
| 1153 | return t->hlen; | 1150 | return t->hlen; |
| 1154 | 1151 | ||
| 1155 | return -t->hlen; | 1152 | return -t->hlen; |
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 10a6a604bf32..678909281648 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
| @@ -187,6 +187,16 @@ struct ic_device { | |||
| 187 | static struct ic_device *ic_first_dev __initdata = NULL;/* List of open device */ | 187 | static struct ic_device *ic_first_dev __initdata = NULL;/* List of open device */ |
| 188 | static struct net_device *ic_dev __initdata = NULL; /* Selected device */ | 188 | static struct net_device *ic_dev __initdata = NULL; /* Selected device */ |
| 189 | 189 | ||
| 190 | static bool __init ic_device_match(struct net_device *dev) | ||
| 191 | { | ||
| 192 | if (user_dev_name[0] ? !strcmp(dev->name, user_dev_name) : | ||
| 193 | (!(dev->flags & IFF_LOOPBACK) && | ||
| 194 | (dev->flags & (IFF_POINTOPOINT|IFF_BROADCAST)) && | ||
| 195 | strncmp(dev->name, "dummy", 5))) | ||
| 196 | return true; | ||
| 197 | return false; | ||
| 198 | } | ||
| 199 | |||
| 190 | static int __init ic_open_devs(void) | 200 | static int __init ic_open_devs(void) |
| 191 | { | 201 | { |
| 192 | struct ic_device *d, **last; | 202 | struct ic_device *d, **last; |
| @@ -207,10 +217,7 @@ static int __init ic_open_devs(void) | |||
| 207 | for_each_netdev(&init_net, dev) { | 217 | for_each_netdev(&init_net, dev) { |
| 208 | if (dev->flags & IFF_LOOPBACK) | 218 | if (dev->flags & IFF_LOOPBACK) |
| 209 | continue; | 219 | continue; |
| 210 | if (user_dev_name[0] ? !strcmp(dev->name, user_dev_name) : | 220 | if (ic_device_match(dev)) { |
| 211 | (!(dev->flags & IFF_LOOPBACK) && | ||
| 212 | (dev->flags & (IFF_POINTOPOINT|IFF_BROADCAST)) && | ||
| 213 | strncmp(dev->name, "dummy", 5))) { | ||
| 214 | int able = 0; | 221 | int able = 0; |
| 215 | if (dev->mtu >= 364) | 222 | if (dev->mtu >= 364) |
| 216 | able |= IC_BOOTP; | 223 | able |= IC_BOOTP; |
| @@ -228,7 +235,7 @@ static int __init ic_open_devs(void) | |||
| 228 | } | 235 | } |
| 229 | if (!(d = kmalloc(sizeof(struct ic_device), GFP_KERNEL))) { | 236 | if (!(d = kmalloc(sizeof(struct ic_device), GFP_KERNEL))) { |
| 230 | rtnl_unlock(); | 237 | rtnl_unlock(); |
| 231 | return -1; | 238 | return -ENOMEM; |
| 232 | } | 239 | } |
| 233 | d->dev = dev; | 240 | d->dev = dev; |
| 234 | *last = d; | 241 | *last = d; |
| @@ -253,7 +260,7 @@ static int __init ic_open_devs(void) | |||
| 253 | printk(KERN_ERR "IP-Config: Device `%s' not found.\n", user_dev_name); | 260 | printk(KERN_ERR "IP-Config: Device `%s' not found.\n", user_dev_name); |
| 254 | else | 261 | else |
| 255 | printk(KERN_ERR "IP-Config: No network devices available.\n"); | 262 | printk(KERN_ERR "IP-Config: No network devices available.\n"); |
| 256 | return -1; | 263 | return -ENODEV; |
| 257 | } | 264 | } |
| 258 | return 0; | 265 | return 0; |
| 259 | } | 266 | } |
| @@ -1303,6 +1310,32 @@ __be32 __init root_nfs_parse_addr(char *name) | |||
| 1303 | return addr; | 1310 | return addr; |
| 1304 | } | 1311 | } |
| 1305 | 1312 | ||
| 1313 | #define DEVICE_WAIT_MAX 12 /* 12 seconds */ | ||
| 1314 | |||
| 1315 | static int __init wait_for_devices(void) | ||
| 1316 | { | ||
| 1317 | int i; | ||
| 1318 | |||
| 1319 | msleep(CONF_PRE_OPEN); | ||
| 1320 | for (i = 0; i < DEVICE_WAIT_MAX; i++) { | ||
| 1321 | struct net_device *dev; | ||
| 1322 | int found = 0; | ||
| 1323 | |||
| 1324 | rtnl_lock(); | ||
| 1325 | for_each_netdev(&init_net, dev) { | ||
| 1326 | if (ic_device_match(dev)) { | ||
| 1327 | found = 1; | ||
| 1328 | break; | ||
| 1329 | } | ||
| 1330 | } | ||
| 1331 | rtnl_unlock(); | ||
| 1332 | if (found) | ||
| 1333 | return 0; | ||
| 1334 | ssleep(1); | ||
| 1335 | } | ||
| 1336 | return -ENODEV; | ||
| 1337 | } | ||
| 1338 | |||
| 1306 | /* | 1339 | /* |
| 1307 | * IP Autoconfig dispatcher. | 1340 | * IP Autoconfig dispatcher. |
| 1308 | */ | 1341 | */ |
| @@ -1313,6 +1346,7 @@ static int __init ip_auto_config(void) | |||
| 1313 | #ifdef IPCONFIG_DYNAMIC | 1346 | #ifdef IPCONFIG_DYNAMIC |
| 1314 | int retries = CONF_OPEN_RETRIES; | 1347 | int retries = CONF_OPEN_RETRIES; |
| 1315 | #endif | 1348 | #endif |
| 1349 | int err; | ||
| 1316 | 1350 | ||
| 1317 | #ifdef CONFIG_PROC_FS | 1351 | #ifdef CONFIG_PROC_FS |
| 1318 | proc_net_fops_create(&init_net, "pnp", S_IRUGO, &pnp_seq_fops); | 1352 | proc_net_fops_create(&init_net, "pnp", S_IRUGO, &pnp_seq_fops); |
| @@ -1325,12 +1359,15 @@ static int __init ip_auto_config(void) | |||
| 1325 | #ifdef IPCONFIG_DYNAMIC | 1359 | #ifdef IPCONFIG_DYNAMIC |
| 1326 | try_try_again: | 1360 | try_try_again: |
| 1327 | #endif | 1361 | #endif |
| 1328 | /* Give hardware a chance to settle */ | 1362 | /* Wait for devices to appear */ |
| 1329 | msleep(CONF_PRE_OPEN); | 1363 | err = wait_for_devices(); |
| 1364 | if (err) | ||
| 1365 | return err; | ||
| 1330 | 1366 | ||
| 1331 | /* Setup all network devices */ | 1367 | /* Setup all network devices */ |
| 1332 | if (ic_open_devs() < 0) | 1368 | err = ic_open_devs(); |
| 1333 | return -1; | 1369 | if (err) |
| 1370 | return err; | ||
| 1334 | 1371 | ||
| 1335 | /* Give drivers a chance to settle */ | 1372 | /* Give drivers a chance to settle */ |
| 1336 | ssleep(CONF_POST_OPEN); | 1373 | ssleep(CONF_POST_OPEN); |
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index 242ed2307370..4f1f337f4337 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c | |||
| @@ -249,6 +249,8 @@ static const struct snmp_mib snmp4_net_list[] = { | |||
| 249 | SNMP_MIB_ITEM("TCPSackShifted", LINUX_MIB_SACKSHIFTED), | 249 | SNMP_MIB_ITEM("TCPSackShifted", LINUX_MIB_SACKSHIFTED), |
| 250 | SNMP_MIB_ITEM("TCPSackMerged", LINUX_MIB_SACKMERGED), | 250 | SNMP_MIB_ITEM("TCPSackMerged", LINUX_MIB_SACKMERGED), |
| 251 | SNMP_MIB_ITEM("TCPSackShiftFallback", LINUX_MIB_SACKSHIFTFALLBACK), | 251 | SNMP_MIB_ITEM("TCPSackShiftFallback", LINUX_MIB_SACKSHIFTFALLBACK), |
| 252 | SNMP_MIB_ITEM("TCPBacklogDrop", LINUX_MIB_TCPBACKLOGDROP), | ||
| 253 | SNMP_MIB_ITEM("TCPMinTTLDrop", LINUX_MIB_TCPMINTTLDROP), | ||
| 252 | SNMP_MIB_SENTINEL | 254 | SNMP_MIB_SENTINEL |
| 253 | }; | 255 | }; |
| 254 | 256 | ||
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index b2ba5581d2ae..d9b40248b97f 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
| @@ -146,7 +146,6 @@ static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst); | |||
| 146 | static void ipv4_link_failure(struct sk_buff *skb); | 146 | static void ipv4_link_failure(struct sk_buff *skb); |
| 147 | static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu); | 147 | static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu); |
| 148 | static int rt_garbage_collect(struct dst_ops *ops); | 148 | static int rt_garbage_collect(struct dst_ops *ops); |
| 149 | static void rt_emergency_hash_rebuild(struct net *net); | ||
| 150 | 149 | ||
| 151 | 150 | ||
| 152 | static struct dst_ops ipv4_dst_ops = { | 151 | static struct dst_ops ipv4_dst_ops = { |
| @@ -780,11 +779,30 @@ static void rt_do_flush(int process_context) | |||
| 780 | #define FRACT_BITS 3 | 779 | #define FRACT_BITS 3 |
| 781 | #define ONE (1UL << FRACT_BITS) | 780 | #define ONE (1UL << FRACT_BITS) |
| 782 | 781 | ||
| 782 | /* | ||
| 783 | * Given a hash chain and an item in this hash chain, | ||
| 784 | * find if a previous entry has the same hash_inputs | ||
| 785 | * (but differs on tos, mark or oif) | ||
| 786 | * Returns 0 if an alias is found. | ||
| 787 | * Returns ONE if rth has no alias before itself. | ||
| 788 | */ | ||
| 789 | static int has_noalias(const struct rtable *head, const struct rtable *rth) | ||
| 790 | { | ||
| 791 | const struct rtable *aux = head; | ||
| 792 | |||
| 793 | while (aux != rth) { | ||
| 794 | if (compare_hash_inputs(&aux->fl, &rth->fl)) | ||
| 795 | return 0; | ||
| 796 | aux = aux->u.dst.rt_next; | ||
| 797 | } | ||
| 798 | return ONE; | ||
| 799 | } | ||
| 800 | |||
| 783 | static void rt_check_expire(void) | 801 | static void rt_check_expire(void) |
| 784 | { | 802 | { |
| 785 | static unsigned int rover; | 803 | static unsigned int rover; |
| 786 | unsigned int i = rover, goal; | 804 | unsigned int i = rover, goal; |
| 787 | struct rtable *rth, *aux, **rthp; | 805 | struct rtable *rth, **rthp; |
| 788 | unsigned long samples = 0; | 806 | unsigned long samples = 0; |
| 789 | unsigned long sum = 0, sum2 = 0; | 807 | unsigned long sum = 0, sum2 = 0; |
| 790 | unsigned long delta; | 808 | unsigned long delta; |
| @@ -835,15 +853,7 @@ nofree: | |||
| 835 | * attributes don't unfairly skew | 853 | * attributes don't unfairly skew |
| 836 | * the length computation | 854 | * the length computation |
| 837 | */ | 855 | */ |
| 838 | for (aux = rt_hash_table[i].chain;;) { | 856 | length += has_noalias(rt_hash_table[i].chain, rth); |
| 839 | if (aux == rth) { | ||
| 840 | length += ONE; | ||
| 841 | break; | ||
| 842 | } | ||
| 843 | if (compare_hash_inputs(&aux->fl, &rth->fl)) | ||
| 844 | break; | ||
| 845 | aux = aux->u.dst.rt_next; | ||
| 846 | } | ||
| 847 | continue; | 857 | continue; |
| 848 | } | 858 | } |
| 849 | } else if (!rt_may_expire(rth, tmo, ip_rt_gc_timeout)) | 859 | } else if (!rt_may_expire(rth, tmo, ip_rt_gc_timeout)) |
| @@ -1073,6 +1083,21 @@ work_done: | |||
| 1073 | out: return 0; | 1083 | out: return 0; |
| 1074 | } | 1084 | } |
| 1075 | 1085 | ||
| 1086 | /* | ||
| 1087 | * Returns number of entries in a hash chain that have different hash_inputs | ||
| 1088 | */ | ||
| 1089 | static int slow_chain_length(const struct rtable *head) | ||
| 1090 | { | ||
| 1091 | int length = 0; | ||
| 1092 | const struct rtable *rth = head; | ||
| 1093 | |||
| 1094 | while (rth) { | ||
| 1095 | length += has_noalias(head, rth); | ||
| 1096 | rth = rth->u.dst.rt_next; | ||
| 1097 | } | ||
| 1098 | return length >> FRACT_BITS; | ||
| 1099 | } | ||
| 1100 | |||
| 1076 | static int rt_intern_hash(unsigned hash, struct rtable *rt, | 1101 | static int rt_intern_hash(unsigned hash, struct rtable *rt, |
| 1077 | struct rtable **rp, struct sk_buff *skb) | 1102 | struct rtable **rp, struct sk_buff *skb) |
| 1078 | { | 1103 | { |
| @@ -1185,7 +1210,8 @@ restart: | |||
| 1185 | rt_free(cand); | 1210 | rt_free(cand); |
| 1186 | } | 1211 | } |
| 1187 | } else { | 1212 | } else { |
| 1188 | if (chain_length > rt_chain_length_max) { | 1213 | if (chain_length > rt_chain_length_max && |
| 1214 | slow_chain_length(rt_hash_table[hash].chain) > rt_chain_length_max) { | ||
| 1189 | struct net *net = dev_net(rt->u.dst.dev); | 1215 | struct net *net = dev_net(rt->u.dst.dev); |
| 1190 | int num = ++net->ipv4.current_rt_cache_rebuild_count; | 1216 | int num = ++net->ipv4.current_rt_cache_rebuild_count; |
| 1191 | if (!rt_caching(dev_net(rt->u.dst.dev))) { | 1217 | if (!rt_caching(dev_net(rt->u.dst.dev))) { |
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index c3588b4fd979..70df40980a87 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
| @@ -1651,13 +1651,15 @@ int tcp_v4_rcv(struct sk_buff *skb) | |||
| 1651 | if (!sk) | 1651 | if (!sk) |
| 1652 | goto no_tcp_socket; | 1652 | goto no_tcp_socket; |
| 1653 | 1653 | ||
| 1654 | if (iph->ttl < inet_sk(sk)->min_ttl) | ||
| 1655 | goto discard_and_relse; | ||
| 1656 | |||
| 1657 | process: | 1654 | process: |
| 1658 | if (sk->sk_state == TCP_TIME_WAIT) | 1655 | if (sk->sk_state == TCP_TIME_WAIT) |
| 1659 | goto do_time_wait; | 1656 | goto do_time_wait; |
| 1660 | 1657 | ||
| 1658 | if (unlikely(iph->ttl < inet_sk(sk)->min_ttl)) { | ||
| 1659 | NET_INC_STATS_BH(net, LINUX_MIB_TCPMINTTLDROP); | ||
| 1660 | goto discard_and_relse; | ||
| 1661 | } | ||
| 1662 | |||
| 1661 | if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) | 1663 | if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) |
| 1662 | goto discard_and_relse; | 1664 | goto discard_and_relse; |
| 1663 | nf_reset(skb); | 1665 | nf_reset(skb); |
| @@ -1682,8 +1684,11 @@ process: | |||
| 1682 | if (!tcp_prequeue(sk, skb)) | 1684 | if (!tcp_prequeue(sk, skb)) |
| 1683 | ret = tcp_v4_do_rcv(sk, skb); | 1685 | ret = tcp_v4_do_rcv(sk, skb); |
| 1684 | } | 1686 | } |
| 1685 | } else | 1687 | } else if (unlikely(sk_add_backlog(sk, skb))) { |
| 1686 | sk_add_backlog(sk, skb); | 1688 | bh_unlock_sock(sk); |
| 1689 | NET_INC_STATS_BH(net, LINUX_MIB_TCPBACKLOGDROP); | ||
| 1690 | goto discard_and_relse; | ||
| 1691 | } | ||
| 1687 | bh_unlock_sock(sk); | 1692 | bh_unlock_sock(sk); |
| 1688 | 1693 | ||
| 1689 | sock_put(sk); | 1694 | sock_put(sk); |
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index f206ee5dda80..4199bc6915c5 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c | |||
| @@ -728,7 +728,7 @@ int tcp_child_process(struct sock *parent, struct sock *child, | |||
| 728 | * in main socket hash table and lock on listening | 728 | * in main socket hash table and lock on listening |
| 729 | * socket does not protect us more. | 729 | * socket does not protect us more. |
| 730 | */ | 730 | */ |
| 731 | sk_add_backlog(child, skb); | 731 | __sk_add_backlog(child, skb); |
| 732 | } | 732 | } |
| 733 | 733 | ||
| 734 | bh_unlock_sock(child); | 734 | bh_unlock_sock(child); |
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 4a1605d3f909..f181b78f2385 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
| @@ -2395,13 +2395,17 @@ struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst, | |||
| 2395 | struct tcp_extend_values *xvp = tcp_xv(rvp); | 2395 | struct tcp_extend_values *xvp = tcp_xv(rvp); |
| 2396 | struct inet_request_sock *ireq = inet_rsk(req); | 2396 | struct inet_request_sock *ireq = inet_rsk(req); |
| 2397 | struct tcp_sock *tp = tcp_sk(sk); | 2397 | struct tcp_sock *tp = tcp_sk(sk); |
| 2398 | const struct tcp_cookie_values *cvp = tp->cookie_values; | ||
| 2398 | struct tcphdr *th; | 2399 | struct tcphdr *th; |
| 2399 | struct sk_buff *skb; | 2400 | struct sk_buff *skb; |
| 2400 | struct tcp_md5sig_key *md5; | 2401 | struct tcp_md5sig_key *md5; |
| 2401 | int tcp_header_size; | 2402 | int tcp_header_size; |
| 2402 | int mss; | 2403 | int mss; |
| 2404 | int s_data_desired = 0; | ||
| 2403 | 2405 | ||
| 2404 | skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC); | 2406 | if (cvp != NULL && cvp->s_data_constant && cvp->s_data_desired) |
| 2407 | s_data_desired = cvp->s_data_desired; | ||
| 2408 | skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15 + s_data_desired, 1, GFP_ATOMIC); | ||
| 2405 | if (skb == NULL) | 2409 | if (skb == NULL) |
| 2406 | return NULL; | 2410 | return NULL; |
| 2407 | 2411 | ||
| @@ -2457,16 +2461,12 @@ struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst, | |||
| 2457 | TCPCB_FLAG_SYN | TCPCB_FLAG_ACK); | 2461 | TCPCB_FLAG_SYN | TCPCB_FLAG_ACK); |
| 2458 | 2462 | ||
| 2459 | if (OPTION_COOKIE_EXTENSION & opts.options) { | 2463 | if (OPTION_COOKIE_EXTENSION & opts.options) { |
| 2460 | const struct tcp_cookie_values *cvp = tp->cookie_values; | 2464 | if (s_data_desired) { |
| 2461 | 2465 | u8 *buf = skb_put(skb, s_data_desired); | |
| 2462 | if (cvp != NULL && | ||
| 2463 | cvp->s_data_constant && | ||
| 2464 | cvp->s_data_desired > 0) { | ||
| 2465 | u8 *buf = skb_put(skb, cvp->s_data_desired); | ||
| 2466 | 2466 | ||
| 2467 | /* copy data directly from the listening socket. */ | 2467 | /* copy data directly from the listening socket. */ |
| 2468 | memcpy(buf, cvp->s_data_payload, cvp->s_data_desired); | 2468 | memcpy(buf, cvp->s_data_payload, s_data_desired); |
| 2469 | TCP_SKB_CB(skb)->end_seq += cvp->s_data_desired; | 2469 | TCP_SKB_CB(skb)->end_seq += s_data_desired; |
| 2470 | } | 2470 | } |
| 2471 | 2471 | ||
| 2472 | if (opts.hash_size > 0) { | 2472 | if (opts.hash_size > 0) { |
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index a17629b8912e..b2e6bbccaee1 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c | |||
| @@ -134,7 +134,7 @@ static void tcp_mtu_probing(struct inet_connection_sock *icsk, struct sock *sk) | |||
| 134 | } | 134 | } |
| 135 | 135 | ||
| 136 | /* This function calculates a "timeout" which is equivalent to the timeout of a | 136 | /* This function calculates a "timeout" which is equivalent to the timeout of a |
| 137 | * TCP connection after "boundary" unsucessful, exponentially backed-off | 137 | * TCP connection after "boundary" unsuccessful, exponentially backed-off |
| 138 | * retransmissions with an initial RTO of TCP_RTO_MIN. | 138 | * retransmissions with an initial RTO of TCP_RTO_MIN. |
| 139 | */ | 139 | */ |
| 140 | static bool retransmits_timed_out(struct sock *sk, | 140 | static bool retransmits_timed_out(struct sock *sk, |
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 608a5446d05b..7af756d0f931 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
| @@ -1371,8 +1371,10 @@ int udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) | |||
| 1371 | bh_lock_sock(sk); | 1371 | bh_lock_sock(sk); |
| 1372 | if (!sock_owned_by_user(sk)) | 1372 | if (!sock_owned_by_user(sk)) |
| 1373 | rc = __udp_queue_rcv_skb(sk, skb); | 1373 | rc = __udp_queue_rcv_skb(sk, skb); |
| 1374 | else | 1374 | else if (sk_add_backlog(sk, skb)) { |
| 1375 | sk_add_backlog(sk, skb); | 1375 | bh_unlock_sock(sk); |
| 1376 | goto drop; | ||
| 1377 | } | ||
| 1376 | bh_unlock_sock(sk); | 1378 | bh_unlock_sock(sk); |
| 1377 | 1379 | ||
| 1378 | return rc; | 1380 | return rc; |
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c index 67107d63c1cd..e4a1483fba77 100644 --- a/net/ipv4/xfrm4_policy.c +++ b/net/ipv4/xfrm4_policy.c | |||
| @@ -91,11 +91,12 @@ static int xfrm4_init_path(struct xfrm_dst *path, struct dst_entry *dst, | |||
| 91 | return 0; | 91 | return 0; |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev) | 94 | static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, |
| 95 | struct flowi *fl) | ||
| 95 | { | 96 | { |
| 96 | struct rtable *rt = (struct rtable *)xdst->route; | 97 | struct rtable *rt = (struct rtable *)xdst->route; |
| 97 | 98 | ||
| 98 | xdst->u.rt.fl = rt->fl; | 99 | xdst->u.rt.fl = *fl; |
| 99 | 100 | ||
| 100 | xdst->u.dst.dev = dev; | 101 | xdst->u.dst.dev = dev; |
| 101 | dev_hold(dev); | 102 | dev_hold(dev); |
