net: mac802154: Add a warning in the hot path
authorMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 19 May 2022 15:05:15 +0000 (17:05 +0200)
committerStefan Schmidt <stefan@datenfreihafen.org>
Fri, 10 Jun 2022 07:48:41 +0000 (09:48 +0200)
commit2b13db13af50a5dcdb944723c828915a50f0c3b2
treef32b59b62f2c3163e55f6c5a58864662148c245f
parentddd9ee7cda122ac55571b8b11b51ef1e71918b63
net: mac802154: Add a warning in the hot path

We should never start a transmission after the queue has been stopped.

But because it might work we don't kill the function here but rather
warn loudly the user that something is wrong.

Set a flag when the queue should remain stopped. Reset this flag when
the queue actually gets restarded. Just check this value to know if a
transmission is legitimate, warn if it is not.

Turn the flags variable into an unsigned long to allow the use of atomic
helpers on it.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Alexander Aring <aahringo@redhat.com>
Link: https://lore.kernel.org/r/20220519150516.443078-11-miquel.raynal@bootlin.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
include/net/cfg802154.h
net/mac802154/tx.c
net/mac802154/util.c