From: Jakub Kicinski <jakub.kicinski@netronome.com>
To: John Fastabend <john.fastabend@gmail.com>
Cc: davem@davemloft.net, netdev@vger.kernel.org,
oss-drivers@netronome.com, borisp@mellanox.com,
aviadye@mellanox.com, daniel@iogearbox.net,
syzbot+f8495bff23a879a6d0bd@syzkaller.appspotmail.com,
syzbot+6f50c99e8f6194bf363f@syzkaller.appspotmail.com,
Eric Biggers <ebiggers@kernel.org>,
herbert@gondor.apana.org.au, glider@google.com,
linux-crypto@vger.kernel.org
Subject: Re: [PATCH net] net/tls: fix sk_msg trim on fallback to copy mode
Date: Thu, 31 Oct 2019 18:41:11 -0700 [thread overview]
Message-ID: <20191031184111.535232f5@cakuba.netronome.com> (raw)
In-Reply-To: <20191031152444.773c183b@cakuba.netronome.com>
On Thu, 31 Oct 2019 15:24:44 -0700, Jakub Kicinski wrote:
> diff --git a/net/core/skmsg.c b/net/core/skmsg.c
> index cf390e0aa73d..c2b0f9cb589c 100644
> --- a/net/core/skmsg.c
> +++ b/net/core/skmsg.c
> @@ -261,25 +261,29 @@ void sk_msg_trim(struct sock *sk, struct sk_msg *msg, int len)
> msg->sg.size = len;
> while (msg->sg.data[i].length &&
> trim >= msg->sg.data[i].length) {
> + bool move_curr = msg->sg.curr == i;
> +
> trim -= msg->sg.data[i].length;
> sk_msg_free_elem(sk, msg, i, true);
> sk_msg_iter_var_prev(i);
> + if (move_curr) {
> + msg->sg.curr = i;
> + msg->sg.copybreak = msg->sg.data[i].length;
> + }
> if (!trim)
> goto out;
> }
Thinking about this in between builds that is clearly nonsensical,
sorry. But I'd feel a little better if we merged a full fix instead of
just fixing the simple case for now :( Maybe I can produce a working
patch based on your description..
next prev parent reply other threads:[~2019-11-01 1:41 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-30 16:05 [PATCH net] net/tls: fix sk_msg trim on fallback to copy mode Jakub Kicinski
2019-10-31 21:16 ` Jakub Kicinski
2019-10-31 22:05 ` John Fastabend
2019-10-31 22:08 ` John Fastabend
2019-10-31 22:24 ` Jakub Kicinski
2019-11-01 1:41 ` Jakub Kicinski [this message]
2019-11-01 4:44 ` John Fastabend
2019-11-01 4:54 ` Jakub Kicinski
2019-11-01 15:01 ` John Fastabend
2019-11-01 17:22 ` [oss-drivers] " Jakub Kicinski
2019-11-01 19:51 ` Jakub Kicinski
2019-11-04 18:56 ` John Fastabend
2019-11-04 19:34 ` Jakub Kicinski
2019-11-04 22:58 ` John Fastabend
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191031184111.535232f5@cakuba.netronome.com \
--to=jakub.kicinski@netronome.com \
--cc=aviadye@mellanox.com \
--cc=borisp@mellanox.com \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=ebiggers@kernel.org \
--cc=glider@google.com \
--cc=herbert@gondor.apana.org.au \
--cc=john.fastabend@gmail.com \
--cc=linux-crypto@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oss-drivers@netronome.com \
--cc=syzbot+6f50c99e8f6194bf363f@syzkaller.appspotmail.com \
--cc=syzbot+f8495bff23a879a6d0bd@syzkaller.appspotmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox