diff options
| author | Alexey Kodanev <[email protected]> | 2017-03-09 10:53:55 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2017-03-10 02:25:34 +0000 |
| commit | a30aad50c26cac63026e5dfcc2e055ae63fe6ef7 (patch) | |
| tree | b805ec64727ce857ebde0ef9694bd50cca74ba1a /include/net/tcp.h | |
| parent | net: ks8851: Added support for half-duplex SPI (diff) | |
| download | kernel-a30aad50c26cac63026e5dfcc2e055ae63fe6ef7.tar.gz kernel-a30aad50c26cac63026e5dfcc2e055ae63fe6ef7.zip | |
tcp: rename *_sequence_number() to *_seq_and_tsoff()
The functions that are returning tcp sequence number also setup
TS offset value, so rename them to better describe their purpose.
No functional changes in this patch.
Suggested-by: Eric Dumazet <[email protected]>
Signed-off-by: Alexey Kodanev <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/net/tcp.h')
| -rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 6ec4ea652f3f..bede8f7fa742 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -1816,7 +1816,7 @@ struct tcp_request_sock_ops { struct dst_entry *(*route_req)(const struct sock *sk, struct flowi *fl, const struct request_sock *req, bool *strict); - __u32 (*init_seq)(const struct sk_buff *skb, u32 *tsoff); + __u32 (*init_seq_tsoff)(const struct sk_buff *skb, u32 *tsoff); int (*send_synack)(const struct sock *sk, struct dst_entry *dst, struct flowi *fl, struct request_sock *req, struct tcp_fastopen_cookie *foc, |
