On Mon, May 18, 2020 at 09:25:09PM +0200, Johannes Berg wrote:
On Mon, 2020-05-18 at 19:09 +0000, Luis Chamberlain wrote:
quoted
quoted
Unfortunately a "taint" is interpreted by many users as: "your kernel
is really F#*D up, you better do something about it right now."
Assuming they're paying attention at all in the first place of course.
Taint historically has been used and still is today to help rule out
whether or not you get support, or how you get support.
For instance, a staging driver is not supported by some upstream
developers, but it will be by those who help staging and Greg. TAINT_CRAP
cannot be even more clear.
So, no, it is not just about "hey your kernel is messed up", there are
clear support boundaries being drawn.
Err, no. Those two are most definitely related. Have you looked at (most
or some or whatever) staging drivers recently? Those contain all kinds
of garbage that might do whatever with your kernel.
No, I stay away :)
Of course that's not a completely clear boundary, maybe you can find a
driver in staging that's perfect code just not written to kernel style?
But I find that hard to believe, in most cases.
So no, it's really not about "[a] staging driver is not supported" vs.
"your kernel is messed up". The very fact that you loaded one of those
things might very well have messed up your kernel entirely.
quoted
These days though, I think we all admit, that firmware crashes can use
a better generic infrastructure for ensuring that clearly affecting-user
experience issues. This patch is about that *when and if these happen*,
we annotate it in the kernel for support pursposes.
That's all fine, I just don't think it's appropriate to pretend that
your kernel is now 'tainted' (think about the meaning of that word) when
the firmware of some random device crashed.
If the firmware crash *does* require driver remove / addition again,
or a reboot, would you think that this is a situation that merits a taint?
quoted
Recovery without affecting user experience would be great, the taint is
*not* for those cases. The taint definition has:
+ 18) ``Q`` used by device drivers to annotate that the device driver's firmware
+ has crashed and the device's operation has been severely affected. The
+ device may be left in a crippled state, requiring full driver removal /
+ addition, system reboot, or it is unclear how long recovery will take.
Let me know if this is not clear.
It's pretty clear, but even then, first of all I doubt this is the case
for many of the places that you've sprinkled the annotation on,
We can remove it, for this driver I can vouch for its location as it did
reach a state where I required a reboot. And its not the first time this
has happened. This got me thinking about the bigger picture of the lack
of proper way to address these cases in the kernel, and how the user is
left dumbfounded.
and secondly it actually hides useful information.
What is it hiding?
Regardless of the support issue, I think this hiding of information is
also problematic.
I really think we'd all be better off if you just made a sysfs file (I
mistyped debugfs in some other email, sorry, apparently you didn't see
the correction in time) that listed which device(s) crashed and how many
times.
Ah yes, count. The taint does not address count.
That would actually be useful. Because honestly, if a random
device crashed for some random reason, that's pretty much a non-event.
If it keeps happening, then we might even want to know about it.
True.
You can obviously save the contents of this file into your bug reports
automatically and act accordingly, but I think you'll find that this is
far more useful than saying "TAINT_FIRMWARE_CRASHED" so I'll ignore this
report.
Absolutely.
Yeah, that might be reasonable thing if the bug report is about
slow wifi *and* you see that ath10k firmware crashed every 10 seconds,
but if it just crashed once a few days earlier it's of no importance to
the system anymore ... And certainly a reasonable driver (which I
believe ath10k to be) would _not_ randomly start corrupting memory
because its firmware crashed. Which really is what tainting the kernel
is about.
I still see it as a support thing too. But discussing this further is
pointless as I agree that taint does not cover count and that it is
important.
Luis