diff options
author | Kyle McMartin <kyle@redhat.com> | 2012-05-07 15:33:04 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-05-09 17:12:59 +0200 |
commit | c0a788c451e1f88b3fb5a85113b87dbc98c7abe4 (patch) | |
tree | ab1b8ba011048a5064b2144461bff24e55d08a90 /include/linux/tcp.h | |
parent | 1f0459780c28491c480f7098f3ece79334ccae0a (diff) | |
download | linux-3.10-c0a788c451e1f88b3fb5a85113b87dbc98c7abe4.tar.gz linux-3.10-c0a788c451e1f88b3fb5a85113b87dbc98c7abe4.tar.bz2 linux-3.10-c0a788c451e1f88b3fb5a85113b87dbc98c7abe4.zip |
net: Fix tcp_build_and_update_options comment in struct tcp_sock
Noticed this comment didn't get updated when
tcp_build_and_update_options was refactored.
Signed-off-by: Kyle McMartin <kyle@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index b6c62d29438..288d201c3b5 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -406,7 +406,7 @@ struct tcp_sock { struct sk_buff_head out_of_order_queue; /* Out of order segments go here */ - /* SACKs data, these 2 need to be together (see tcp_build_and_update_options) */ + /* SACKs data, these 2 need to be together (see tcp_options_write) */ struct tcp_sack_block duplicate_sack[1]; /* D-SACK block */ struct tcp_sack_block selective_acks[4]; /* The SACKS themselves*/ |