From patchwork Fri Apr 19 21:29:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Dumazet X-Patchwork-Id: 238113 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 6B8FB2C0223 for ; Sat, 20 Apr 2013 07:29:34 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933506Ab3DSV33 (ORCPT ); Fri, 19 Apr 2013 17:29:29 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:47479 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932576Ab3DSV32 (ORCPT ); Fri, 19 Apr 2013 17:29:28 -0400 Received: by mail-pa0-f52.google.com with SMTP id fb10so2476112pad.39 for ; Fri, 19 Apr 2013 14:29:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:subject:from:to:cc:date:content-type:x-mailer :content-transfer-encoding:mime-version; bh=+LApVtrzUWpm5hqD/DoumbfSqer1fbBh2iLyRQiwA5E=; b=cT4sC0wWbcF9EwviSJVHalQFE6fKW0eJtBHuQJbHVn3EPUoZBDnVZF+YKmLQN/JO7L 4X1Yvso5Z8VpdAO8cehuQ9X79IBDwoZqqeS02pGQQqbrP+H0wT9a+KLH+CA59mrnua8h OeXeSfrzEfKmeKJZ1VzEz/e0QwE2gbOTzIU5+80TYkD9bIJ+SF7+ZSa/NUjaGh9L04Mw RmeykcNftqJU55dFrcMxDs+5PxXF3xuur8c3NcePoAovpJ3CVjpRafgoqW4zcncQGVv8 Rx/HBM5Pn/Jj0cSh/sHDXKdgLJ9QCv6WRtZBziIuayPajOBxpQYKumxeCEjTNm9QYFIf 8aRw== X-Received: by 10.68.254.225 with SMTP id al1mr21757212pbd.69.1366406967527; Fri, 19 Apr 2013 14:29:27 -0700 (PDT) Received: from [172.19.253.153] ([172.19.253.153]) by mx.google.com with ESMTPS id xl10sm15907321pac.15.2013.04.19.14.29.26 (version=SSLv3 cipher=RC4-SHA bits=128/128); Fri, 19 Apr 2013 14:29:26 -0700 (PDT) Message-ID: <1366406965.16391.64.camel@edumazet-glaptop> Subject: [PATCH net-next] net: remove a stale comment for dl_next From: Eric Dumazet To: David Miller Cc: netdev Date: Fri, 19 Apr 2013 14:29:25 -0700 X-Mailer: Evolution 3.2.3-0ubuntu6 Mime-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Eric Dumazet 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 --- include/net/request_sock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html 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 */