Netdev List
 help / color / mirror / Atom feed
From: Daniel Axtens <dja@axtens.net>
To: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH] net: sched: tbf: handle GSO_BY_FRAGS case in enqueue
Date: Fri, 16 Feb 2018 01:49:50 +1100	[thread overview]
Message-ID: <87wozenw8h.fsf@linkitivity.dja.id.au> (raw)
In-Reply-To: <20180215132900.GB4716@localhost.localdomain>

Hi Marcelo,

>
> If this block was meant to be an out-of-band/changelog comment, your
> SOB line should be above the first --- marker.
> Anyhow,
> Reviewed-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>

Thanks - I did a v2 with this around the right way [1], but DaveM asked
me to be a bit more thorough and look for other GSO_BY_FRAGS issues. [2]

I did find a couple, including the one I asked you about with
qdisk_pkt_len_init [3] (thanks for your answer, btw). Currently I'm
trying to wrap my head around GSO_DODGY as Eric mentioned on that
thread, and then I'll do a series with this fix and the other
GSO_BY_FRAGS fixes I find.

Regards,
Daniel

[1] https://patchwork.ozlabs.org/patch/869145/
[2] https://patchwork.ozlabs.org/comment/1852414/
[3] https://www.spinics.net/lists/netdev/msg482397.html
>
>> ---
>>  net/sched/sch_tbf.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c
>> index 229172d509cc..03225a8df973 100644
>> --- a/net/sched/sch_tbf.c
>> +++ b/net/sched/sch_tbf.c
>> @@ -188,7 +188,8 @@ static int tbf_enqueue(struct sk_buff *skb, struct Qdisc *sch,
>>  	int ret;
>>  
>>  	if (qdisc_pkt_len(skb) > q->max_size) {
>> -		if (skb_is_gso(skb) && skb_gso_mac_seglen(skb) <= q->max_size)
>> +		if (skb_is_gso(skb) &&
>> +		    skb_gso_validate_mac_len(skb, q->max_size))
>>  			return tbf_segment(skb, sch, to_free);
>>  		return qdisc_drop(skb, sch, to_free);
>>  	}
>> -- 
>> 2.14.1
>> 

      reply	other threads:[~2018-02-15 14:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-05  3:34 [PATCH] net: sched: tbf: handle GSO_BY_FRAGS case in enqueue Daniel Axtens
2018-02-15 13:29 ` Marcelo Ricardo Leitner
2018-02-15 14:49   ` Daniel Axtens [this message]

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=87wozenw8h.fsf@linkitivity.dja.id.au \
    --to=dja@axtens.net \
    --cc=marcelo.leitner@gmail.com \
    --cc=netdev@vger.kernel.org \
    /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