All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Toke Høiland-Jørgensen" <toke@redhat.com>
To: Johannes Berg <johannes@sipsolutions.net>,
	Jens Axboe <axboe@kernel.dk>,
	Emmanuel Grumbach <emmanuel.grumbach@intel.com>,
	Luca Coelho <luciano.coelho@intel.com>
Cc: "linux-wireless\@vger.kernel.org"
	<linux-wireless@vger.kernel.org>,
	Networking <netdev@vger.kernel.org>
Subject: Re: iwlwifi warnings in 5.5-rc1
Date: Thu, 12 Dec 2019 11:55:19 +0100	[thread overview]
Message-ID: <87v9qleru0.fsf@toke.dk> (raw)
In-Reply-To: <3ca2be96898e9d30c27b2411148d201318e413f2.camel@sipsolutions.net>

Johannes Berg <johannes@sipsolutions.net> writes:

> On Wed, 2019-12-11 at 15:02 +0100, Toke Høiland-Jørgensen wrote:
>
>> > 2) GSO/TSO like what we have - it's not really clear how to handle it.
>> >    The airtime estimate will shoot *way* up (64kB frame) once that frame
>> >    enters, and then ... should it "trickle back down" as the generated 
>> >    parts are transmitted? But then the driver needs to split up the
>> >    airtime estimate? Or should it just go back down entirely? On the
>> >    first frame? That might overshoot. On the last frame? Opposite
>> >    problem ...
>> 
>> Well, ideally it would be divided out over the component packets; but
>> yeah, who is going to do that?
>
> I'm not even sure we *can* do this easily - do we know up-front how many
> packets this will expand to? We should know, but it might not be so easy
> given the abstraction layers. We could guess and if it's wrong just set
> it to 0 on any remaining ones.

I was thinking about a scheme where we re-defined the value in the cb to
be a "time per byte" value, that we could just multiply by the packet
length; that would make it trivial to do partial reporting. Not sure
it's quite workable in practice, though; it would be hard to avoid
rounding errors, and there's also the additional headers when splitting
a packet, so the lengths don't necessarily add up.

>> I think reporting it on the first packet
>> would be the safest if we had to choose. 
>
> Agree.
>
>> Also, ideally we would want the GSO/TSO mechanism to lower the size
>> of the superpackets at lower rates (does it?). At higher rates this
>> matters less...
>
> Well TCP does limit (pacing shift) the amount of outstanding data, so if
> it's _really_ slow I guess it will also limit the size of the
> superpackets?

Yeah, I *think* it does... :)

> It's really just an artifact of our software implementation that we
> report the SKBs back as used with partial content. Maybe we shouldn't
> even do that, since they weren't generated by mac80211 in the first
> place, and only report the original skb or something.

Hmm, yeah, was wondering how that works, actually. I assumed you send
the whole thing to the hardware as one superpacket? But if so how do you
get the completion events back? Or are you splitting it in the driver
just before you send it to the hardware?

>> > 3) I'm not quite convinced that all drivers report the TX rate
>> >    completely correctly in the status, some don't even use this path
>> >    but the ieee80211_tx_status_ext() which doesn't update the rate.
>> > 
>> > 4) Probably most importantly, this is completely broken with HE because
>> >    there's currently no way to report HE rates in the TX status at all!
>> >    I just worked around that in our driver for 'iw' reporting purposes
>> >    by implementing the rate reporting in the sta_statistics callback,
>> >    but that data won't be used by the airtime estimates.
>> 
>> Hmm, yeah, both of those are good points. I guess I just kinda assumed
>> that the drivers were already doing the right thing there... :)
>
> I'm not really sure I want to rely on this - this was never really
> needed *functionally*, just from a *statistics* point of view (e.g. "iw
> link" or such).

Right, I see. Well I guess now that we're turning this on one driver at
a time, we can ensure that the driver provides sufficiently accurate
rate information as part of that.

BTW, since we're discussing this in the context of iwlwifi: do you have
any data as to how much benefit AQL would be for that? I.e., do the
Intel devices tend to buffer a lot of data in hardware/firmware?

>> > Now, (1) probably doesn't matter, the estimates don't need to be that
>> > accurate. (2) I'm not sure how to solve; (3) and (4) could both be
>> > solved by having some mechanism of the rate scaling to tell us what the
>> > current rate is whenever it updates, rather than relying on the
>> > last_rate. Really we should do that much more, and even phase out
>> > last_rate entirely, it's a stupid concept.
>> 
>> Yes, that last bit would be good!
>
> We already partially have this, we have a 'get best rate' or so callback
> in the rate scaling, we'd just have to extend it to the driver ops for
> offloaded rate scaling.
>
> Ideally, it'd be a function call from the rate scaling to mac80211 so we
> don't have to call a function every time we need the value, but the rate
> scaling just calls us whenever it updates. This would even work with
> iwlwifi's offloaded algorithm - it notifies the host on all changes.

Yup, this makes sense, and would be easy to integrate with Minstrel as
well, I think. We already have ieee80211_sta_set_expected_throughput(),
so maybe expanding that? It just provides a single number now, but we
could change it to set the full rate info instead?

-Toke


  reply	other threads:[~2019-12-12 10:55 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-10 20:46 iwlwifi warnings in 5.5-rc1 Jens Axboe
2019-12-11  8:36 ` Johannes Berg
2019-12-11  8:53   ` Toke Høiland-Jørgensen
2019-12-11 10:11     ` Johannes Berg
2019-12-11 10:23       ` Toke Høiland-Jørgensen
2019-12-11 11:51         ` Johannes Berg
2019-12-11 13:42           ` Johannes Berg
2019-12-11 14:04             ` Toke Høiland-Jørgensen
2019-12-11 14:12               ` Johannes Berg
2019-12-11 14:47                 ` Toke Høiland-Jørgensen
2019-12-11 21:18                   ` Johannes Berg
2019-12-12 10:45                     ` Toke Høiland-Jørgensen
2019-12-11 14:02           ` Toke Høiland-Jørgensen
2019-12-11 21:17             ` Johannes Berg
2019-12-12 10:55               ` Toke Høiland-Jørgensen [this message]
2019-12-12 11:00                 ` Johannes Berg
2019-12-21  0:55   ` Jens Axboe
2019-12-21  9:17     ` Johannes Berg
2019-12-21 13:45       ` Jens Axboe
2019-12-11 13:45 ` Johannes Berg
2019-12-11 14:09   ` Toke Høiland-Jørgensen
2019-12-11 14:13     ` Johannes Berg
2019-12-11 14:55       ` Toke Høiland-Jørgensen
2019-12-11 21:19         ` Johannes Berg
2019-12-12 10:55           ` Toke Høiland-Jørgensen

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=87v9qleru0.fsf@toke.dk \
    --to=toke@redhat.com \
    --cc=axboe@kernel.dk \
    --cc=emmanuel.grumbach@intel.com \
    --cc=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=luciano.coelho@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.