diff options
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/dst.h | 15 | ||||
-rw-r--r-- | include/net/ip6_route.h | 4 | ||||
-rw-r--r-- | include/net/sock.h | 47 |
3 files changed, 32 insertions, 34 deletions
diff --git a/include/net/dst.h b/include/net/dst.h index ce078cda6b74..aac5a5fcfda9 100644 --- a/include/net/dst.h +++ b/include/net/dst.h | |||
@@ -225,21 +225,6 @@ static inline void dst_confirm(struct dst_entry *dst) | |||
225 | neigh_confirm(dst->neighbour); | 225 | neigh_confirm(dst->neighbour); |
226 | } | 226 | } |
227 | 227 | ||
228 | static inline void dst_negative_advice(struct dst_entry **dst_p, | ||
229 | struct sock *sk) | ||
230 | { | ||
231 | struct dst_entry * dst = *dst_p; | ||
232 | if (dst && dst->ops->negative_advice) { | ||
233 | *dst_p = dst->ops->negative_advice(dst); | ||
234 | |||
235 | if (dst != *dst_p) { | ||
236 | extern void sk_reset_txq(struct sock *sk); | ||
237 | |||
238 | sk_reset_txq(sk); | ||
239 | } | ||
240 | } | ||
241 | } | ||
242 | |||
243 | static inline void dst_link_failure(struct sk_buff *skb) | 228 | static inline void dst_link_failure(struct sk_buff *skb) |
244 | { | 229 | { |
245 | struct dst_entry *dst = skb_dst(skb); | 230 | struct dst_entry *dst = skb_dst(skb); |
diff --git a/include/net/ip6_route.h b/include/net/ip6_route.h index 68f67836e146..278312c95f96 100644 --- a/include/net/ip6_route.h +++ b/include/net/ip6_route.h | |||
@@ -152,9 +152,9 @@ static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst, | |||
152 | static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst, | 152 | static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst, |
153 | struct in6_addr *daddr, struct in6_addr *saddr) | 153 | struct in6_addr *daddr, struct in6_addr *saddr) |
154 | { | 154 | { |
155 | write_lock(&sk->sk_dst_lock); | 155 | spin_lock(&sk->sk_dst_lock); |
156 | __ip6_dst_store(sk, dst, daddr, saddr); | 156 | __ip6_dst_store(sk, dst, daddr, saddr); |
157 | write_unlock(&sk->sk_dst_lock); | 157 | spin_unlock(&sk->sk_dst_lock); |
158 | } | 158 | } |
159 | 159 | ||
160 | static inline int ipv6_unicast_destination(struct sk_buff *skb) | 160 | static inline int ipv6_unicast_destination(struct sk_buff *skb) |
diff --git a/include/net/sock.h b/include/net/sock.h index b4603cd54fcd..56df440a950b 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -262,7 +262,7 @@ struct sock { | |||
262 | #ifdef CONFIG_XFRM | 262 | #ifdef CONFIG_XFRM |
263 | struct xfrm_policy *sk_policy[2]; | 263 | struct xfrm_policy *sk_policy[2]; |
264 | #endif | 264 | #endif |
265 | rwlock_t sk_dst_lock; | 265 | spinlock_t sk_dst_lock; |
266 | atomic_t sk_rmem_alloc; | 266 | atomic_t sk_rmem_alloc; |
267 | atomic_t sk_wmem_alloc; | 267 | atomic_t sk_wmem_alloc; |
268 | atomic_t sk_omem_alloc; | 268 | atomic_t sk_omem_alloc; |
@@ -1192,7 +1192,8 @@ extern unsigned long sock_i_ino(struct sock *sk); | |||
1192 | static inline struct dst_entry * | 1192 | static inline struct dst_entry * |
1193 | __sk_dst_get(struct sock *sk) | 1193 | __sk_dst_get(struct sock *sk) |
1194 | { | 1194 | { |
1195 | return sk->sk_dst_cache; | 1195 | return rcu_dereference_check(sk->sk_dst_cache, rcu_read_lock_held() || |
1196 | sock_owned_by_user(sk)); | ||
1196 | } | 1197 | } |
1197 | 1198 | ||
1198 | static inline struct dst_entry * | 1199 | static inline struct dst_entry * |
@@ -1200,50 +1201,62 @@ sk_dst_get(struct sock *sk) | |||
1200 | { | 1201 | { |
1201 | struct dst_entry *dst; | 1202 | struct dst_entry *dst; |
1202 | 1203 | ||
1203 | read_lock(&sk->sk_dst_lock); | 1204 | rcu_read_lock(); |
1204 | dst = sk->sk_dst_cache; | 1205 | dst = rcu_dereference(sk->sk_dst_cache); |
1205 | if (dst) | 1206 | if (dst) |
1206 | dst_hold(dst); | 1207 | dst_hold(dst); |
1207 | read_unlock(&sk->sk_dst_lock); | 1208 | rcu_read_unlock(); |
1208 | return dst; | 1209 | return dst; |
1209 | } | 1210 | } |
1210 | 1211 | ||
1212 | extern void sk_reset_txq(struct sock *sk); | ||
1213 | |||
1214 | static inline void dst_negative_advice(struct sock *sk) | ||
1215 | { | ||
1216 | struct dst_entry *ndst, *dst = __sk_dst_get(sk); | ||
1217 | |||
1218 | if (dst && dst->ops->negative_advice) { | ||
1219 | ndst = dst->ops->negative_advice(dst); | ||
1220 | |||
1221 | if (ndst != dst) { | ||
1222 | rcu_assign_pointer(sk->sk_dst_cache, ndst); | ||
1223 | sk_reset_txq(sk); | ||
1224 | } | ||
1225 | } | ||
1226 | } | ||
1227 | |||
1211 | static inline void | 1228 | static inline void |
1212 | __sk_dst_set(struct sock *sk, struct dst_entry *dst) | 1229 | __sk_dst_set(struct sock *sk, struct dst_entry *dst) |
1213 | { | 1230 | { |
1214 | struct dst_entry *old_dst; | 1231 | struct dst_entry *old_dst; |
1215 | 1232 | ||
1216 | sk_tx_queue_clear(sk); | 1233 | sk_tx_queue_clear(sk); |
1217 | old_dst = sk->sk_dst_cache; | 1234 | old_dst = rcu_dereference_check(sk->sk_dst_cache, |
1218 | sk->sk_dst_cache = dst; | 1235 | lockdep_is_held(&sk->sk_dst_lock)); |
1236 | rcu_assign_pointer(sk->sk_dst_cache, dst); | ||
1219 | dst_release(old_dst); | 1237 | dst_release(old_dst); |
1220 | } | 1238 | } |
1221 | 1239 | ||
1222 | static inline void | 1240 | static inline void |
1223 | sk_dst_set(struct sock *sk, struct dst_entry *dst) | 1241 | sk_dst_set(struct sock *sk, struct dst_entry *dst) |
1224 | { | 1242 | { |
1225 | write_lock(&sk->sk_dst_lock); | 1243 | spin_lock(&sk->sk_dst_lock); |
1226 | __sk_dst_set(sk, dst); | 1244 | __sk_dst_set(sk, dst); |
1227 | write_unlock(&sk->sk_dst_lock); | 1245 | spin_unlock(&sk->sk_dst_lock); |
1228 | } | 1246 | } |
1229 | 1247 | ||
1230 | static inline void | 1248 | static inline void |
1231 | __sk_dst_reset(struct sock *sk) | 1249 | __sk_dst_reset(struct sock *sk) |
1232 | { | 1250 | { |
1233 | struct dst_entry *old_dst; | 1251 | __sk_dst_set(sk, NULL); |
1234 | |||
1235 | sk_tx_queue_clear(sk); | ||
1236 | old_dst = sk->sk_dst_cache; | ||
1237 | sk->sk_dst_cache = NULL; | ||
1238 | dst_release(old_dst); | ||
1239 | } | 1252 | } |
1240 | 1253 | ||
1241 | static inline void | 1254 | static inline void |
1242 | sk_dst_reset(struct sock *sk) | 1255 | sk_dst_reset(struct sock *sk) |
1243 | { | 1256 | { |
1244 | write_lock(&sk->sk_dst_lock); | 1257 | spin_lock(&sk->sk_dst_lock); |
1245 | __sk_dst_reset(sk); | 1258 | __sk_dst_reset(sk); |
1246 | write_unlock(&sk->sk_dst_lock); | 1259 | spin_unlock(&sk->sk_dst_lock); |
1247 | } | 1260 | } |
1248 | 1261 | ||
1249 | extern struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie); | 1262 | extern struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie); |