mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
cw1200: When debug is enabled, display all wakeup conditions for the wait_event_interruptible_timeout() call.
When trying to debug an interrupt delivery problem I noticed that not all of the wakeup conditions on the worker thread were included in the debug message. This patch rectifies that. Signed-off-by: Solomon Peachy <pizza@shaftnet.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
7f190230ba
commit
076f0d20b6
@ -465,8 +465,8 @@ static int cw1200_bh(void *arg)
|
|||||||
(rx || tx || term || suspend || priv->bh_error);
|
(rx || tx || term || suspend || priv->bh_error);
|
||||||
}), status);
|
}), status);
|
||||||
|
|
||||||
pr_debug("[BH] - rx: %d, tx: %d, term: %d, suspend: %d, status: %ld\n",
|
pr_debug("[BH] - rx: %d, tx: %d, term: %d, bh_err: %d, suspend: %d, status: %ld\n",
|
||||||
rx, tx, term, suspend, status);
|
rx, tx, term, suspend, priv->bh_error, status);
|
||||||
|
|
||||||
/* Did an error occur? */
|
/* Did an error occur? */
|
||||||
if ((status < 0 && status != -ERESTARTSYS) ||
|
if ((status < 0 && status != -ERESTARTSYS) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user