diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/9p/client.c | 13 | ||||
| -rw-r--r-- | net/appletalk/ddp.c | 1 | ||||
| -rw-r--r-- | net/can/bcm.c | 4 | ||||
| -rw-r--r-- | net/can/raw.c | 4 | ||||
| -rw-r--r-- | net/core/sock.c | 41 | ||||
| -rw-r--r-- | net/ipv4/ip_gre.c | 4 | ||||
| -rw-r--r-- | net/ipv4/ip_output.c | 1 | ||||
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 3 | ||||
| -rw-r--r-- | net/ipv4/tcp_output.c | 2 | ||||
| -rw-r--r-- | net/ipv6/ip6_output.c | 1 | ||||
| -rw-r--r-- | net/ipv6/sit.c | 1 | ||||
| -rw-r--r-- | net/ipv6/tcp_ipv6.c | 3 | ||||
| -rw-r--r-- | net/ipx/af_ipx.c | 1 | ||||
| -rw-r--r-- | net/irda/af_irda.c | 1 | ||||
| -rw-r--r-- | net/irda/irnet/irnet.h | 1 | ||||
| -rw-r--r-- | net/irda/irnet/irnet_ppp.c | 1 | ||||
| -rw-r--r-- | net/netfilter/nf_conntrack_core.c | 21 | ||||
| -rw-r--r-- | net/netfilter/xt_osf.c | 5 | ||||
| -rw-r--r-- | net/sunrpc/clnt.c | 1 | ||||
| -rw-r--r-- | net/sunrpc/sched.c | 1 | ||||
| -rw-r--r-- | net/sunrpc/svc_xprt.c | 1 | ||||
| -rw-r--r-- | net/wanrouter/wanmain.c | 1 | ||||
| -rw-r--r-- | net/x25/af_x25.c | 1 |
23 files changed, 85 insertions, 28 deletions
diff --git a/net/9p/client.c b/net/9p/client.c index dd43a8289b0d..787ccddb85ea 100644 --- a/net/9p/client.c +++ b/net/9p/client.c | |||
| @@ -117,9 +117,6 @@ static int parse_opts(char *opts, struct p9_client *clnt) | |||
| 117 | } | 117 | } |
| 118 | } | 118 | } |
| 119 | 119 | ||
| 120 | if (!clnt->trans_mod) | ||
| 121 | clnt->trans_mod = v9fs_get_default_trans(); | ||
| 122 | |||
| 123 | kfree(options); | 120 | kfree(options); |
| 124 | return ret; | 121 | return ret; |
| 125 | } | 122 | } |
| @@ -689,6 +686,9 @@ struct p9_client *p9_client_create(const char *dev_name, char *options) | |||
| 689 | if (err < 0) | 686 | if (err < 0) |
| 690 | goto error; | 687 | goto error; |
| 691 | 688 | ||
| 689 | if (!clnt->trans_mod) | ||
| 690 | clnt->trans_mod = v9fs_get_default_trans(); | ||
| 691 | |||
| 692 | if (clnt->trans_mod == NULL) { | 692 | if (clnt->trans_mod == NULL) { |
| 693 | err = -EPROTONOSUPPORT; | 693 | err = -EPROTONOSUPPORT; |
| 694 | P9_DPRINTK(P9_DEBUG_ERROR, | 694 | P9_DPRINTK(P9_DEBUG_ERROR, |
| @@ -1098,7 +1098,6 @@ p9_client_read(struct p9_fid *fid, char *data, char __user *udata, u64 offset, | |||
| 1098 | 1098 | ||
| 1099 | if (data) { | 1099 | if (data) { |
| 1100 | memmove(data, dataptr, count); | 1100 | memmove(data, dataptr, count); |
| 1101 | data += count; | ||
| 1102 | } | 1101 | } |
| 1103 | 1102 | ||
| 1104 | if (udata) { | 1103 | if (udata) { |
| @@ -1192,9 +1191,9 @@ struct p9_wstat *p9_client_stat(struct p9_fid *fid) | |||
| 1192 | 1191 | ||
| 1193 | err = p9pdu_readf(req->rc, clnt->dotu, "wS", &ignored, ret); | 1192 | err = p9pdu_readf(req->rc, clnt->dotu, "wS", &ignored, ret); |
| 1194 | if (err) { | 1193 | if (err) { |
| 1195 | ret = ERR_PTR(err); | ||
| 1196 | p9pdu_dump(1, req->rc); | 1194 | p9pdu_dump(1, req->rc); |
| 1197 | goto free_and_error; | 1195 | p9_free_req(clnt, req); |
| 1196 | goto error; | ||
| 1198 | } | 1197 | } |
| 1199 | 1198 | ||
| 1200 | P9_DPRINTK(P9_DEBUG_9P, | 1199 | P9_DPRINTK(P9_DEBUG_9P, |
| @@ -1211,8 +1210,6 @@ struct p9_wstat *p9_client_stat(struct p9_fid *fid) | |||
| 1211 | p9_free_req(clnt, req); | 1210 | p9_free_req(clnt, req); |
| 1212 | return ret; | 1211 | return ret; |
| 1213 | 1212 | ||
| 1214 | free_and_error: | ||
| 1215 | p9_free_req(clnt, req); | ||
| 1216 | error: | 1213 | error: |
| 1217 | kfree(ret); | 1214 | kfree(ret); |
| 1218 | return ERR_PTR(err); | 1215 | return ERR_PTR(err); |
diff --git a/net/appletalk/ddp.c b/net/appletalk/ddp.c index 590b83963622..bfbe13786bb4 100644 --- a/net/appletalk/ddp.c +++ b/net/appletalk/ddp.c | |||
| @@ -54,6 +54,7 @@ | |||
| 54 | #include <linux/capability.h> | 54 | #include <linux/capability.h> |
| 55 | #include <linux/module.h> | 55 | #include <linux/module.h> |
| 56 | #include <linux/if_arp.h> | 56 | #include <linux/if_arp.h> |
| 57 | #include <linux/smp_lock.h> | ||
| 57 | #include <linux/termios.h> /* For TIOCOUTQ/INQ */ | 58 | #include <linux/termios.h> /* For TIOCOUTQ/INQ */ |
| 58 | #include <net/datalink.h> | 59 | #include <net/datalink.h> |
| 59 | #include <net/psnap.h> | 60 | #include <net/psnap.h> |
diff --git a/net/can/bcm.c b/net/can/bcm.c index 95d7f32643ae..72720c710351 100644 --- a/net/can/bcm.c +++ b/net/can/bcm.c | |||
| @@ -75,6 +75,7 @@ static __initdata const char banner[] = KERN_INFO | |||
| 75 | MODULE_DESCRIPTION("PF_CAN broadcast manager protocol"); | 75 | MODULE_DESCRIPTION("PF_CAN broadcast manager protocol"); |
| 76 | MODULE_LICENSE("Dual BSD/GPL"); | 76 | MODULE_LICENSE("Dual BSD/GPL"); |
| 77 | MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>"); | 77 | MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>"); |
| 78 | MODULE_ALIAS("can-proto-2"); | ||
| 78 | 79 | ||
| 79 | /* easy access to can_frame payload */ | 80 | /* easy access to can_frame payload */ |
| 80 | static inline u64 GET_U64(const struct can_frame *cp) | 81 | static inline u64 GET_U64(const struct can_frame *cp) |
| @@ -1469,6 +1470,9 @@ static int bcm_release(struct socket *sock) | |||
| 1469 | bo->ifindex = 0; | 1470 | bo->ifindex = 0; |
| 1470 | } | 1471 | } |
| 1471 | 1472 | ||
| 1473 | sock_orphan(sk); | ||
| 1474 | sock->sk = NULL; | ||
| 1475 | |||
| 1472 | release_sock(sk); | 1476 | release_sock(sk); |
| 1473 | sock_put(sk); | 1477 | sock_put(sk); |
| 1474 | 1478 | ||
diff --git a/net/can/raw.c b/net/can/raw.c index 6aa154e806ae..f4cc44548bda 100644 --- a/net/can/raw.c +++ b/net/can/raw.c | |||
| @@ -62,6 +62,7 @@ static __initdata const char banner[] = | |||
| 62 | MODULE_DESCRIPTION("PF_CAN raw protocol"); | 62 | MODULE_DESCRIPTION("PF_CAN raw protocol"); |
| 63 | MODULE_LICENSE("Dual BSD/GPL"); | 63 | MODULE_LICENSE("Dual BSD/GPL"); |
| 64 | MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>"); | 64 | MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>"); |
| 65 | MODULE_ALIAS("can-proto-1"); | ||
| 65 | 66 | ||
| 66 | #define MASK_ALL 0 | 67 | #define MASK_ALL 0 |
| 67 | 68 | ||
| @@ -306,6 +307,9 @@ static int raw_release(struct socket *sock) | |||
| 306 | ro->bound = 0; | 307 | ro->bound = 0; |
| 307 | ro->count = 0; | 308 | ro->count = 0; |
| 308 | 309 | ||
| 310 | sock_orphan(sk); | ||
| 311 | sock->sk = NULL; | ||
| 312 | |||
| 309 | release_sock(sk); | 313 | release_sock(sk); |
| 310 | sock_put(sk); | 314 | sock_put(sk); |
| 311 | 315 | ||
diff --git a/net/core/sock.c b/net/core/sock.c index 6354863b1c68..bbb25be7ddfe 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
| @@ -631,7 +631,7 @@ set_rcvbuf: | |||
| 631 | 631 | ||
| 632 | case SO_TIMESTAMPING: | 632 | case SO_TIMESTAMPING: |
| 633 | if (val & ~SOF_TIMESTAMPING_MASK) { | 633 | if (val & ~SOF_TIMESTAMPING_MASK) { |
| 634 | ret = EINVAL; | 634 | ret = -EINVAL; |
| 635 | break; | 635 | break; |
| 636 | } | 636 | } |
| 637 | sock_valbool_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE, | 637 | sock_valbool_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE, |
| @@ -919,13 +919,19 @@ static inline void sock_lock_init(struct sock *sk) | |||
| 919 | af_family_keys + sk->sk_family); | 919 | af_family_keys + sk->sk_family); |
| 920 | } | 920 | } |
| 921 | 921 | ||
| 922 | /* | ||
| 923 | * Copy all fields from osk to nsk but nsk->sk_refcnt must not change yet, | ||
| 924 | * even temporarly, because of RCU lookups. sk_node should also be left as is. | ||
| 925 | */ | ||
| 922 | static void sock_copy(struct sock *nsk, const struct sock *osk) | 926 | static void sock_copy(struct sock *nsk, const struct sock *osk) |
| 923 | { | 927 | { |
| 924 | #ifdef CONFIG_SECURITY_NETWORK | 928 | #ifdef CONFIG_SECURITY_NETWORK |
| 925 | void *sptr = nsk->sk_security; | 929 | void *sptr = nsk->sk_security; |
| 926 | #endif | 930 | #endif |
| 927 | 931 | BUILD_BUG_ON(offsetof(struct sock, sk_copy_start) != | |
| 928 | memcpy(nsk, osk, osk->sk_prot->obj_size); | 932 | sizeof(osk->sk_node) + sizeof(osk->sk_refcnt)); |
| 933 | memcpy(&nsk->sk_copy_start, &osk->sk_copy_start, | ||
| 934 | osk->sk_prot->obj_size - offsetof(struct sock, sk_copy_start)); | ||
| 929 | #ifdef CONFIG_SECURITY_NETWORK | 935 | #ifdef CONFIG_SECURITY_NETWORK |
| 930 | nsk->sk_security = sptr; | 936 | nsk->sk_security = sptr; |
| 931 | security_sk_clone(osk, nsk); | 937 | security_sk_clone(osk, nsk); |
| @@ -939,8 +945,23 @@ static struct sock *sk_prot_alloc(struct proto *prot, gfp_t priority, | |||
| 939 | struct kmem_cache *slab; | 945 | struct kmem_cache *slab; |
| 940 | 946 | ||
| 941 | slab = prot->slab; | 947 | slab = prot->slab; |
| 942 | if (slab != NULL) | 948 | if (slab != NULL) { |
| 943 | sk = kmem_cache_alloc(slab, priority); | 949 | sk = kmem_cache_alloc(slab, priority & ~__GFP_ZERO); |
| 950 | if (!sk) | ||
| 951 | return sk; | ||
| 952 | if (priority & __GFP_ZERO) { | ||
| 953 | /* | ||
| 954 | * caches using SLAB_DESTROY_BY_RCU should let | ||
| 955 | * sk_node.next un-modified. Special care is taken | ||
| 956 | * when initializing object to zero. | ||
| 957 | */ | ||
| 958 | if (offsetof(struct sock, sk_node.next) != 0) | ||
| 959 | memset(sk, 0, offsetof(struct sock, sk_node.next)); | ||
| 960 | memset(&sk->sk_node.pprev, 0, | ||
| 961 | prot->obj_size - offsetof(struct sock, | ||
| 962 | sk_node.pprev)); | ||
| 963 | } | ||
| 964 | } | ||
| 944 | else | 965 | else |
| 945 | sk = kmalloc(prot->obj_size, priority); | 966 | sk = kmalloc(prot->obj_size, priority); |
| 946 | 967 | ||
| @@ -1125,6 +1146,11 @@ struct sock *sk_clone(const struct sock *sk, const gfp_t priority) | |||
| 1125 | 1146 | ||
| 1126 | newsk->sk_err = 0; | 1147 | newsk->sk_err = 0; |
| 1127 | newsk->sk_priority = 0; | 1148 | newsk->sk_priority = 0; |
| 1149 | /* | ||
| 1150 | * Before updating sk_refcnt, we must commit prior changes to memory | ||
| 1151 | * (Documentation/RCU/rculist_nulls.txt for details) | ||
| 1152 | */ | ||
| 1153 | smp_wmb(); | ||
| 1128 | atomic_set(&newsk->sk_refcnt, 2); | 1154 | atomic_set(&newsk->sk_refcnt, 2); |
| 1129 | 1155 | ||
| 1130 | /* | 1156 | /* |
| @@ -1840,6 +1866,11 @@ void sock_init_data(struct socket *sock, struct sock *sk) | |||
| 1840 | 1866 | ||
| 1841 | sk->sk_stamp = ktime_set(-1L, 0); | 1867 | sk->sk_stamp = ktime_set(-1L, 0); |
| 1842 | 1868 | ||
| 1869 | /* | ||
| 1870 | * Before updating sk_refcnt, we must commit prior changes to memory | ||
| 1871 | * (Documentation/RCU/rculist_nulls.txt for details) | ||
| 1872 | */ | ||
| 1873 | smp_wmb(); | ||
| 1843 | atomic_set(&sk->sk_refcnt, 1); | 1874 | atomic_set(&sk->sk_refcnt, 1); |
| 1844 | atomic_set(&sk->sk_wmem_alloc, 1); | 1875 | atomic_set(&sk->sk_wmem_alloc, 1); |
| 1845 | atomic_set(&sk->sk_drops, 0); | 1876 | atomic_set(&sk->sk_drops, 0); |
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 44e2a3d2359a..cb4a0f4bd5e5 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
| @@ -735,10 +735,10 @@ static int ipgre_tunnel_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 735 | } | 735 | } |
| 736 | 736 | ||
| 737 | tos = tiph->tos; | 737 | tos = tiph->tos; |
| 738 | if (tos&1) { | 738 | if (tos == 1) { |
| 739 | tos = 0; | ||
| 739 | if (skb->protocol == htons(ETH_P_IP)) | 740 | if (skb->protocol == htons(ETH_P_IP)) |
| 740 | tos = old_iph->tos; | 741 | tos = old_iph->tos; |
| 741 | tos &= ~1; | ||
| 742 | } | 742 | } |
| 743 | 743 | ||
| 744 | { | 744 | { |
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 247026282669..7d0821054729 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
| @@ -1243,7 +1243,6 @@ int ip_push_pending_frames(struct sock *sk) | |||
| 1243 | skb->len += tmp_skb->len; | 1243 | skb->len += tmp_skb->len; |
| 1244 | skb->data_len += tmp_skb->len; | 1244 | skb->data_len += tmp_skb->len; |
| 1245 | skb->truesize += tmp_skb->truesize; | 1245 | skb->truesize += tmp_skb->truesize; |
| 1246 | __sock_put(tmp_skb->sk); | ||
| 1247 | tmp_skb->destructor = NULL; | 1246 | tmp_skb->destructor = NULL; |
| 1248 | tmp_skb->sk = NULL; | 1247 | tmp_skb->sk = NULL; |
| 1249 | } | 1248 | } |
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 5a1ca2698c88..6d88219c5e22 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
| @@ -1160,6 +1160,7 @@ struct request_sock_ops tcp_request_sock_ops __read_mostly = { | |||
| 1160 | #ifdef CONFIG_TCP_MD5SIG | 1160 | #ifdef CONFIG_TCP_MD5SIG |
| 1161 | static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = { | 1161 | static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = { |
| 1162 | .md5_lookup = tcp_v4_reqsk_md5_lookup, | 1162 | .md5_lookup = tcp_v4_reqsk_md5_lookup, |
| 1163 | .calc_md5_hash = tcp_v4_md5_hash_skb, | ||
| 1163 | }; | 1164 | }; |
| 1164 | #endif | 1165 | #endif |
| 1165 | 1166 | ||
| @@ -1373,7 +1374,7 @@ struct sock *tcp_v4_syn_recv_sock(struct sock *sk, struct sk_buff *skb, | |||
| 1373 | */ | 1374 | */ |
| 1374 | char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC); | 1375 | char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC); |
| 1375 | if (newkey != NULL) | 1376 | if (newkey != NULL) |
| 1376 | tcp_v4_md5_do_add(newsk, inet_sk(sk)->daddr, | 1377 | tcp_v4_md5_do_add(newsk, newinet->daddr, |
| 1377 | newkey, key->keylen); | 1378 | newkey, key->keylen); |
| 1378 | newsk->sk_route_caps &= ~NETIF_F_GSO_MASK; | 1379 | newsk->sk_route_caps &= ~NETIF_F_GSO_MASK; |
| 1379 | } | 1380 | } |
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 5bdf08d312d9..bd62712848fa 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
| @@ -2261,7 +2261,7 @@ struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst, | |||
| 2261 | #ifdef CONFIG_TCP_MD5SIG | 2261 | #ifdef CONFIG_TCP_MD5SIG |
| 2262 | /* Okay, we have all we need - do the md5 hash if needed */ | 2262 | /* Okay, we have all we need - do the md5 hash if needed */ |
| 2263 | if (md5) { | 2263 | if (md5) { |
| 2264 | tp->af_specific->calc_md5_hash(md5_hash_location, | 2264 | tcp_rsk(req)->af_specific->calc_md5_hash(md5_hash_location, |
| 2265 | md5, NULL, req, skb); | 2265 | md5, NULL, req, skb); |
| 2266 | } | 2266 | } |
| 2267 | #endif | 2267 | #endif |
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 7c76e3d18215..87f8419a68fd 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
| @@ -1484,7 +1484,6 @@ int ip6_push_pending_frames(struct sock *sk) | |||
| 1484 | skb->len += tmp_skb->len; | 1484 | skb->len += tmp_skb->len; |
| 1485 | skb->data_len += tmp_skb->len; | 1485 | skb->data_len += tmp_skb->len; |
| 1486 | skb->truesize += tmp_skb->truesize; | 1486 | skb->truesize += tmp_skb->truesize; |
| 1487 | __sock_put(tmp_skb->sk); | ||
| 1488 | tmp_skb->destructor = NULL; | 1487 | tmp_skb->destructor = NULL; |
| 1489 | tmp_skb->sk = NULL; | 1488 | tmp_skb->sk = NULL; |
| 1490 | } | 1489 | } |
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 68e52308e552..98b7327d0949 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c | |||
| @@ -1018,6 +1018,7 @@ static void ipip6_tunnel_setup(struct net_device *dev) | |||
| 1018 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr); | 1018 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr); |
| 1019 | dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr); | 1019 | dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr); |
| 1020 | dev->flags = IFF_NOARP; | 1020 | dev->flags = IFF_NOARP; |
| 1021 | dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; | ||
| 1021 | dev->iflink = 0; | 1022 | dev->iflink = 0; |
| 1022 | dev->addr_len = 4; | 1023 | dev->addr_len = 4; |
| 1023 | dev->features |= NETIF_F_NETNS_LOCAL; | 1024 | dev->features |= NETIF_F_NETNS_LOCAL; |
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 58810c65b635..d849dd53b788 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
| @@ -896,6 +896,7 @@ struct request_sock_ops tcp6_request_sock_ops __read_mostly = { | |||
| 896 | #ifdef CONFIG_TCP_MD5SIG | 896 | #ifdef CONFIG_TCP_MD5SIG |
| 897 | static struct tcp_request_sock_ops tcp_request_sock_ipv6_ops = { | 897 | static struct tcp_request_sock_ops tcp_request_sock_ipv6_ops = { |
| 898 | .md5_lookup = tcp_v6_reqsk_md5_lookup, | 898 | .md5_lookup = tcp_v6_reqsk_md5_lookup, |
| 899 | .calc_md5_hash = tcp_v6_md5_hash_skb, | ||
| 899 | }; | 900 | }; |
| 900 | #endif | 901 | #endif |
| 901 | 902 | ||
| @@ -1441,7 +1442,7 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb, | |||
| 1441 | */ | 1442 | */ |
| 1442 | char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC); | 1443 | char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC); |
| 1443 | if (newkey != NULL) | 1444 | if (newkey != NULL) |
| 1444 | tcp_v6_md5_do_add(newsk, &inet6_sk(sk)->daddr, | 1445 | tcp_v6_md5_do_add(newsk, &newnp->daddr, |
| 1445 | newkey, key->keylen); | 1446 | newkey, key->keylen); |
| 1446 | } | 1447 | } |
| 1447 | #endif | 1448 | #endif |
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index 417b0e309495..f1118d92a191 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c | |||
| @@ -41,6 +41,7 @@ | |||
| 41 | #include <linux/netdevice.h> | 41 | #include <linux/netdevice.h> |
| 42 | #include <linux/uio.h> | 42 | #include <linux/uio.h> |
| 43 | #include <linux/skbuff.h> | 43 | #include <linux/skbuff.h> |
| 44 | #include <linux/smp_lock.h> | ||
| 44 | #include <linux/socket.h> | 45 | #include <linux/socket.h> |
| 45 | #include <linux/sockios.h> | 46 | #include <linux/sockios.h> |
| 46 | #include <linux/string.h> | 47 | #include <linux/string.h> |
diff --git a/net/irda/af_irda.c b/net/irda/af_irda.c index cb762c8723ea..80cf29aae096 100644 --- a/net/irda/af_irda.c +++ b/net/irda/af_irda.c | |||
| @@ -45,6 +45,7 @@ | |||
| 45 | #include <linux/capability.h> | 45 | #include <linux/capability.h> |
| 46 | #include <linux/module.h> | 46 | #include <linux/module.h> |
| 47 | #include <linux/types.h> | 47 | #include <linux/types.h> |
| 48 | #include <linux/smp_lock.h> | ||
| 48 | #include <linux/socket.h> | 49 | #include <linux/socket.h> |
| 49 | #include <linux/sockios.h> | 50 | #include <linux/sockios.h> |
| 50 | #include <linux/init.h> | 51 | #include <linux/init.h> |
diff --git a/net/irda/irnet/irnet.h b/net/irda/irnet/irnet.h index bccf4d0059f0..b001c361ad30 100644 --- a/net/irda/irnet/irnet.h +++ b/net/irda/irnet/irnet.h | |||
| @@ -241,7 +241,6 @@ | |||
| 241 | #include <linux/module.h> | 241 | #include <linux/module.h> |
| 242 | 242 | ||
| 243 | #include <linux/kernel.h> | 243 | #include <linux/kernel.h> |
| 244 | #include <linux/smp_lock.h> | ||
| 245 | #include <linux/skbuff.h> | 244 | #include <linux/skbuff.h> |
| 246 | #include <linux/tty.h> | 245 | #include <linux/tty.h> |
| 247 | #include <linux/proc_fs.h> | 246 | #include <linux/proc_fs.h> |
diff --git a/net/irda/irnet/irnet_ppp.c b/net/irda/irnet/irnet_ppp.c index 6d8ae03c14f5..68cbcb19cbd8 100644 --- a/net/irda/irnet/irnet_ppp.c +++ b/net/irda/irnet/irnet_ppp.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | * 2) as a control channel (write commands, read events) | 13 | * 2) as a control channel (write commands, read events) |
| 14 | */ | 14 | */ |
| 15 | 15 | ||
| 16 | #include <linux/smp_lock.h> | ||
| 16 | #include "irnet_ppp.h" /* Private header */ | 17 | #include "irnet_ppp.h" /* Private header */ |
| 17 | /* Please put other headers in irnet.h - Thanks */ | 18 | /* Please put other headers in irnet.h - Thanks */ |
| 18 | 19 | ||
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c index 7508f11c5b39..b5869b9574b0 100644 --- a/net/netfilter/nf_conntrack_core.c +++ b/net/netfilter/nf_conntrack_core.c | |||
| @@ -561,23 +561,38 @@ struct nf_conn *nf_conntrack_alloc(struct net *net, | |||
| 561 | } | 561 | } |
| 562 | } | 562 | } |
| 563 | 563 | ||
| 564 | ct = kmem_cache_zalloc(nf_conntrack_cachep, gfp); | 564 | /* |
| 565 | * Do not use kmem_cache_zalloc(), as this cache uses | ||
| 566 | * SLAB_DESTROY_BY_RCU. | ||
| 567 | */ | ||
| 568 | ct = kmem_cache_alloc(nf_conntrack_cachep, gfp); | ||
| 565 | if (ct == NULL) { | 569 | if (ct == NULL) { |
| 566 | pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n"); | 570 | pr_debug("nf_conntrack_alloc: Can't alloc conntrack.\n"); |
| 567 | atomic_dec(&net->ct.count); | 571 | atomic_dec(&net->ct.count); |
| 568 | return ERR_PTR(-ENOMEM); | 572 | return ERR_PTR(-ENOMEM); |
| 569 | } | 573 | } |
| 570 | 574 | /* | |
| 575 | * Let ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.next | ||
| 576 | * and ct->tuplehash[IP_CT_DIR_REPLY].hnnode.next unchanged. | ||
| 577 | */ | ||
| 578 | memset(&ct->tuplehash[IP_CT_DIR_MAX], 0, | ||
| 579 | sizeof(*ct) - offsetof(struct nf_conn, tuplehash[IP_CT_DIR_MAX])); | ||
| 571 | spin_lock_init(&ct->lock); | 580 | spin_lock_init(&ct->lock); |
| 572 | atomic_set(&ct->ct_general.use, 1); | ||
| 573 | ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig; | 581 | ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig; |
| 582 | ct->tuplehash[IP_CT_DIR_ORIGINAL].hnnode.pprev = NULL; | ||
| 574 | ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl; | 583 | ct->tuplehash[IP_CT_DIR_REPLY].tuple = *repl; |
| 584 | ct->tuplehash[IP_CT_DIR_REPLY].hnnode.pprev = NULL; | ||
| 575 | /* Don't set timer yet: wait for confirmation */ | 585 | /* Don't set timer yet: wait for confirmation */ |
| 576 | setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct); | 586 | setup_timer(&ct->timeout, death_by_timeout, (unsigned long)ct); |
| 577 | #ifdef CONFIG_NET_NS | 587 | #ifdef CONFIG_NET_NS |
| 578 | ct->ct_net = net; | 588 | ct->ct_net = net; |
| 579 | #endif | 589 | #endif |
| 580 | 590 | ||
| 591 | /* | ||
| 592 | * changes to lookup keys must be done before setting refcnt to 1 | ||
| 593 | */ | ||
| 594 | smp_wmb(); | ||
| 595 | atomic_set(&ct->ct_general.use, 1); | ||
| 581 | return ct; | 596 | return ct; |
| 582 | } | 597 | } |
| 583 | EXPORT_SYMBOL_GPL(nf_conntrack_alloc); | 598 | EXPORT_SYMBOL_GPL(nf_conntrack_alloc); |
diff --git a/net/netfilter/xt_osf.c b/net/netfilter/xt_osf.c index 863e40977a4d..0f482e2440b4 100644 --- a/net/netfilter/xt_osf.c +++ b/net/netfilter/xt_osf.c | |||
| @@ -330,7 +330,8 @@ static bool xt_osf_match_packet(const struct sk_buff *skb, | |||
| 330 | fcount++; | 330 | fcount++; |
| 331 | 331 | ||
| 332 | if (info->flags & XT_OSF_LOG) | 332 | if (info->flags & XT_OSF_LOG) |
| 333 | nf_log_packet(p->hooknum, 0, skb, p->in, p->out, NULL, | 333 | nf_log_packet(p->family, p->hooknum, skb, |
| 334 | p->in, p->out, NULL, | ||
| 334 | "%s [%s:%s] : %pi4:%d -> %pi4:%d hops=%d\n", | 335 | "%s [%s:%s] : %pi4:%d -> %pi4:%d hops=%d\n", |
| 335 | f->genre, f->version, f->subtype, | 336 | f->genre, f->version, f->subtype, |
| 336 | &ip->saddr, ntohs(tcp->source), | 337 | &ip->saddr, ntohs(tcp->source), |
| @@ -345,7 +346,7 @@ static bool xt_osf_match_packet(const struct sk_buff *skb, | |||
| 345 | rcu_read_unlock(); | 346 | rcu_read_unlock(); |
| 346 | 347 | ||
| 347 | if (!fcount && (info->flags & XT_OSF_LOG)) | 348 | if (!fcount && (info->flags & XT_OSF_LOG)) |
| 348 | nf_log_packet(p->hooknum, 0, skb, p->in, p->out, NULL, | 349 | nf_log_packet(p->family, p->hooknum, skb, p->in, p->out, NULL, |
| 349 | "Remote OS is not known: %pi4:%u -> %pi4:%u\n", | 350 | "Remote OS is not known: %pi4:%u -> %pi4:%u\n", |
| 350 | &ip->saddr, ntohs(tcp->source), | 351 | &ip->saddr, ntohs(tcp->source), |
| 351 | &ip->daddr, ntohs(tcp->dest)); | 352 | &ip->daddr, ntohs(tcp->dest)); |
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 5bc2f45bddf0..ebfcf9b89909 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
| @@ -28,7 +28,6 @@ | |||
| 28 | #include <linux/kallsyms.h> | 28 | #include <linux/kallsyms.h> |
| 29 | #include <linux/mm.h> | 29 | #include <linux/mm.h> |
| 30 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
| 31 | #include <linux/smp_lock.h> | ||
| 32 | #include <linux/utsname.h> | 31 | #include <linux/utsname.h> |
| 33 | #include <linux/workqueue.h> | 32 | #include <linux/workqueue.h> |
| 34 | #include <linux/in6.h> | 33 | #include <linux/in6.h> |
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c index 1102ce1251f7..8f459abe97cf 100644 --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
| 17 | #include <linux/mempool.h> | 17 | #include <linux/mempool.h> |
| 18 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
| 19 | #include <linux/smp_lock.h> | ||
| 20 | #include <linux/spinlock.h> | 19 | #include <linux/spinlock.h> |
| 21 | #include <linux/mutex.h> | 20 | #include <linux/mutex.h> |
| 22 | 21 | ||
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c index 6f33d33cc064..27d44332f017 100644 --- a/net/sunrpc/svc_xprt.c +++ b/net/sunrpc/svc_xprt.c | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #include <linux/sched.h> | 7 | #include <linux/sched.h> |
| 8 | #include <linux/smp_lock.h> | ||
| 8 | #include <linux/errno.h> | 9 | #include <linux/errno.h> |
| 9 | #include <linux/freezer.h> | 10 | #include <linux/freezer.h> |
| 10 | #include <linux/kthread.h> | 11 | #include <linux/kthread.h> |
diff --git a/net/wanrouter/wanmain.c b/net/wanrouter/wanmain.c index 466e2d22d256..258daa80ad92 100644 --- a/net/wanrouter/wanmain.c +++ b/net/wanrouter/wanmain.c | |||
| @@ -48,6 +48,7 @@ | |||
| 48 | #include <linux/kernel.h> | 48 | #include <linux/kernel.h> |
| 49 | #include <linux/module.h> /* support for loadable modules */ | 49 | #include <linux/module.h> /* support for loadable modules */ |
| 50 | #include <linux/slab.h> /* kmalloc(), kfree() */ | 50 | #include <linux/slab.h> /* kmalloc(), kfree() */ |
| 51 | #include <linux/smp_lock.h> | ||
| 51 | #include <linux/mm.h> | 52 | #include <linux/mm.h> |
| 52 | #include <linux/string.h> /* inline mem*, str* functions */ | 53 | #include <linux/string.h> /* inline mem*, str* functions */ |
| 53 | 54 | ||
diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c index 21cdc872004e..5e6c072c64d3 100644 --- a/net/x25/af_x25.c +++ b/net/x25/af_x25.c | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | #include <linux/errno.h> | 40 | #include <linux/errno.h> |
| 41 | #include <linux/kernel.h> | 41 | #include <linux/kernel.h> |
| 42 | #include <linux/sched.h> | 42 | #include <linux/sched.h> |
| 43 | #include <linux/smp_lock.h> | ||
| 43 | #include <linux/timer.h> | 44 | #include <linux/timer.h> |
| 44 | #include <linux/string.h> | 45 | #include <linux/string.h> |
| 45 | #include <linux/net.h> | 46 | #include <linux/net.h> |
