Re: [PATCH bpf-next 4/8] tls: convert to generic sk_msg interface

2018-10-12 Thread Daniel Borkmann
On 10/12/2018 10:16 PM, Dave Watson wrote: > On 10/11/18 02:45 AM, Daniel Borkmann wrote: >> Convert kTLS over to make use of sk_msg interface for plaintext and >> encrypted scattergather data, so it reuses all the sk_msg helpers >> and data structure which later on in a second step enables to glue

Re: [PATCH bpf-next 4/8] tls: convert to generic sk_msg interface

2018-10-12 Thread Dave Watson
On 10/11/18 02:45 AM, Daniel Borkmann wrote: > Convert kTLS over to make use of sk_msg interface for plaintext and > encrypted scattergather data, so it reuses all the sk_msg helpers > and data structure which later on in a second step enables to glue > this to BPF. Looks very clean, thanks! > >

[PATCH bpf-next 4/8] tls: convert to generic sk_msg interface

2018-10-10 Thread Daniel Borkmann
Convert kTLS over to make use of sk_msg interface for plaintext and encrypted scattergather data, so it reuses all the sk_msg helpers and data structure which later on in a second step enables to glue this to BPF. Joint work with John. Signed-off-by: Daniel Borkmann Signed-off-by: John Fastabend