From: Eric Dumazet Date: Fri, 19 Apr 2013 21:29:25 +0000 (-0700) Subject: net: remove a stale comment for dl_next X-Git-Tag: v3.10-rc1~66^2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3fb62c5d3fc1821f50c6003e582713857a520f6b;p=platform%2Fkernel%2Flinux-stable.git net: remove a stale comment for dl_next dl_next member in struct request_sock doesn't need to be first. We expect to insert a "struct common_sock" or a subset of it, so this claim had to be verified. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/include/net/request_sock.h b/include/net/request_sock.h index 9069e65..59795e4 100644 --- a/include/net/request_sock.h +++ b/include/net/request_sock.h @@ -48,7 +48,7 @@ extern int inet_rtx_syn_ack(struct sock *parent, struct request_sock *req); /* struct request_sock - mini sock to represent a connection request */ struct request_sock { - struct request_sock *dl_next; /* Must be first member! */ + struct request_sock *dl_next; u16 mss; u8 num_retrans; /* number of retransmits */ u8 cookie_ts:1; /* syncookie: encode tcpopts in timestamp */