Re: [PATCH 1/3] thunderbolt: Make the driver less verbose

From: Lukas Wunner
Date: Wed Sep 05 2018 - 05:05:14 EST


On Mon, Sep 03, 2018 at 04:33:02PM +0300, Mika Westerberg wrote:
> Currently the driver logs quite a lot to the system message buffer even
> when doing normal operations. This information is not useful for
> ordinary users and might even annoy some.

No, the verbose logging is done on purpose to aid us in reverse-engineering
the protocol. For example ...

> - tb_port_info(port, " Unknown1: %#x Unknown2: %#x Unknown3: %#x\n",
> - hop->unknown1, hop->unknown2, hop->unknown3);

... why do you think we're logging these seemingly stupid unknown
bitfields? Because whenever someone posts dmesg output they
inadvertantly post the contents of those unknown fields and we can
then google the value of those fields on various controllers and
machines and deduce their possible meaning.

By muting those messages, you're taking away our reverse enginering aids
without having released the spec, which would indeed obviate the need
for them. Please don't do that. Release the spec, *then* you can
mute the messages. Not the other way round.

Thanks,

Lukas