Re: [PATCH V3 net-next 01/14] tcp: Add clean acked data hook

2018-03-23 Thread David Miller
From: Saeed Mahameed Date: Thu, 22 Mar 2018 15:33:38 -0700 > +#if IS_ENABLED(CONFIG_TLS_DEVICE) > +DEFINE_STATIC_KEY_FALSE(clean_acked_data_enabled); > +EXPORT_SYMBOL_GPL(clean_acked_data_enabled); > +#endif Please mark this symbol static (otherwise it's name pollutes the global name space, "cle

[PATCH V3 net-next 01/14] tcp: Add clean acked data hook

2018-03-22 Thread Saeed Mahameed
From: Ilya Lesokhin Called when a TCP segment is acknowledged. Could be used by application protocols who hold additional metadata associated with the stream data. This is required by TLS device offload to release metadata associated with acknowledged TLS records. Signed-off-by: Ilya Lesokhin