Re: [RFC v2 02/14] tcp: Pass sock and skb to tcp_options_write

2018-02-01 Thread David Miller
From: Christoph Paasch Date: Wed, 31 Jan 2018 16:07:04 -0800 > An upcoming patch adds a configurable, per-socket list of TCP options to > populate in the TCP header. This requires tcp_options_write() to know the > socket (to use the options list) and the skb (to provide visibility to the > packet

[RFC v2 02/14] tcp: Pass sock and skb to tcp_options_write

2018-01-31 Thread Christoph Paasch
An upcoming patch adds a configurable, per-socket list of TCP options to populate in the TCP header. This requires tcp_options_write() to know the socket (to use the options list) and the skb (to provide visibility to the packet data for options like TCP_MD5SIG). Signed-off-by: Christoph Paasch R