Message ID | 20231206232706.374377-2-john.fastabend@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c5a595000e2677e865a39f249c056bc05d6e55fd |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | fixes for ktls | expand |
John Fastabend wrote: > The curr pointer must also be updated on the splice similar to how > we do this for other copy types. > > Fixes: d829e9c4112b ("tls: convert to generic sk_msg interface") > Signed-off-by: John Fastabend <john.fastabend@gmail.com> > --- Reported-by: Jann Horn <jannh@google.com>
diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c index 316f76187962..e37b4d2e2acd 100644 --- a/net/tls/tls_sw.c +++ b/net/tls/tls_sw.c @@ -952,6 +952,8 @@ static int tls_sw_sendmsg_splice(struct sock *sk, struct msghdr *msg, } sk_msg_page_add(msg_pl, page, part, off); + msg_pl->sg.copybreak = 0; + msg_pl->sg.curr = msg_pl->sg.end; sk_mem_charge(sk, part); *copied += part; try_to_copy -= part;
The curr pointer must also be updated on the splice similar to how we do this for other copy types. Fixes: d829e9c4112b ("tls: convert to generic sk_msg interface") Signed-off-by: John Fastabend <john.fastabend@gmail.com> --- net/tls/tls_sw.c | 2 ++ 1 file changed, 2 insertions(+)