aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>2007-12-01 17:48:02 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:55:43 -0500
commit234b68607006f3721679e900809ccb99e8bfb10c (patch)
tree5f40cdf7db79afbfbbb864ee3a07192136162006 /include
parentd67c58e9ae80ea577785111534e49d3ca757ec50 (diff)
[TCP]: Add tcp_for_write_queue_from_safe and use it in mtu_probe
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/tcp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index cdd0050b97a4..6e392babda4a 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -1229,6 +1229,11 @@ static inline struct sk_buff *tcp_write_queue_next(struct sock *sk, struct sk_bu
1229 for (; (skb != (struct sk_buff *)&(sk)->sk_write_queue);\ 1229 for (; (skb != (struct sk_buff *)&(sk)->sk_write_queue);\
1230 skb = skb->next) 1230 skb = skb->next)
1231 1231
1232#define tcp_for_write_queue_from_safe(skb, tmp, sk) \
1233 for (tmp = skb->next; \
1234 (skb != (struct sk_buff *)&(sk)->sk_write_queue); \
1235 skb = tmp, tmp = skb->next)
1236
1232static inline struct sk_buff *tcp_send_head(struct sock *sk) 1237static inline struct sk_buff *tcp_send_head(struct sock *sk)
1233{ 1238{
1234 return sk->sk_send_head; 1239 return sk->sk_send_head;