Cake - FQ_codel the next generation
 help / color / mirror / Atom feed
From: "Toke Høiland-Jørgensen" <toke@toke.dk>
To: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Cc: netdev@vger.kernel.org,cake@lists.bufferbloat.net
Subject: Re: [Cake] [PATCH net-next v14 6/7] sch_cake: Add overhead compensation support to the rate shaper
Date: Tue, 22 May 2018 10:44:53 +0200	[thread overview]
Message-ID: <52F9132E-4FDC-495A-A020-BCD963B3E3CF@toke.dk> (raw)
In-Reply-To: <20180521234513.GH26212@localhost.localdomain>



On 22 May 2018 01:45:13 CEST, Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> wrote:
>On Mon, May 21, 2018 at 10:35:58PM +0200, Toke Høiland-Jørgensen wrote:
>> +static u32 cake_overhead(struct cake_sched_data *q, const struct
>sk_buff *skb)
>> +{
>> +	const struct skb_shared_info *shinfo = skb_shinfo(skb);
>> +	unsigned int hdr_len, last_len = 0;
>> +	u32 off = skb_network_offset(skb);
>> +	u32 len = qdisc_pkt_len(skb);
>> +	u16 segs = 1;
>> +
>> +	q->avg_netoff = cake_ewma(q->avg_netoff, off << 16, 8);
>> +
>> +	if (!shinfo->gso_size)
>> +		return cake_calc_overhead(q, len, off);
>> +
>> +	/* borrowed from qdisc_pkt_len_init() */
>> +	hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
>> +
>> +	/* + transport layer */
>> +	if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 |
>> +						SKB_GSO_TCPV6))) {
>> +		const struct tcphdr *th;
>> +		struct tcphdr _tcphdr;
>> +
>> +		th = skb_header_pointer(skb, skb_transport_offset(skb),
>> +					sizeof(_tcphdr), &_tcphdr);
>> +		if (likely(th))
>> +			hdr_len += __tcp_hdrlen(th);
>> +	} else {
>
>I didn't see some code limiting GSO packets to just TCP or UDP. Is it
>safe to assume that this packet is an UDP one, and not SCTP or ESP,
>for example?

As the comment says, I nicked this from the qdisc init code.
So I assume it's safe? :)

>> +		struct udphdr _udphdr;
>> +
>> +		if (skb_header_pointer(skb, skb_transport_offset(skb),
>> +				       sizeof(_udphdr), &_udphdr))
>> +			hdr_len += sizeof(struct udphdr);
>> +	}
>> +
>> +	if (unlikely(shinfo->gso_type & SKB_GSO_DODGY))
>> +		segs = DIV_ROUND_UP(skb->len - hdr_len,
>> +				    shinfo->gso_size);
>> +	else
>> +		segs = shinfo->gso_segs;
>> +
>> +	len = shinfo->gso_size + hdr_len;
>> +	last_len = skb->len - shinfo->gso_size * (segs - 1);
>> +
>> +	return (cake_calc_overhead(q, len, off) * (segs - 1) +
>> +		cake_calc_overhead(q, last_len, off));
>> +}
>> +

  reply	other threads:[~2018-05-22  8:44 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-21 20:35 [Cake] [PATCH net-next v14 0/7] sched: Add Common Applications Kept Enhanced (cake) qdisc Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 5/7] sch_cake: Add DiffServ handling Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 1/7] sched: Add Common Applications Kept Enhanced (cake) qdisc Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 7/7] sch_cake: Conditionally split GSO segments Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 6/7] sch_cake: Add overhead compensation support to the rate shaper Toke Høiland-Jørgensen
2018-05-21 23:45   ` Marcelo Ricardo Leitner
2018-05-22  8:44     ` Toke Høiland-Jørgensen [this message]
2018-05-22 20:22       ` Marcelo Ricardo Leitner
2018-05-22 22:06         ` Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 4/7] sch_cake: Add NAT awareness to packet classifier Toke Høiland-Jørgensen
2018-05-21 23:34   ` Marcelo Ricardo Leitner
2018-05-22  8:45     ` Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 2/7] sch_cake: Add ingress mode Toke Høiland-Jørgensen
2018-05-21 20:35 ` [Cake] [PATCH net-next v14 3/7] sch_cake: Add optional ACK filter Toke Høiland-Jørgensen
2018-05-21 21:15   ` Eric Dumazet

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

  List information: https://lists.bufferbloat.net/postorius/lists/cake.lists.bufferbloat.net/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52F9132E-4FDC-495A-A020-BCD963B3E3CF@toke.dk \
    --to=toke@toke.dk \
    --cc=cake@lists.bufferbloat.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