diff options
author | Bartosz Golaszewski | 2019-11-29 11:22:18 +0100 |
---|---|---|
committer | Bartosz Golaszewski | 2020-02-12 12:05:47 +0100 |
commit | 248ae1752e91438cb7cfc8432b88bc34410e8e4e (patch) | |
tree | db7a52164916dc76a618f0b2e8ed9b398a04152c | |
parent | dea9c80ee6726986d90260f135c83545427cbc4e (diff) |
gpiolib: emit a debug message when adding events to a full kfifo
Currently if the line-event kfifo is full, we just silently drop any new
events. Add a ratelimited debug message so that we at least have some
trace in the kernel log of event overflow.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
-rw-r--r-- | drivers/gpio/gpiolib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 43d98309e725..36afe0b2b150 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -978,6 +978,8 @@ static irqreturn_t lineevent_irq_thread(int irq, void *p) 1, &le->wait.lock); if (ret) wake_up_poll(&le->wait, EPOLLIN); + else + pr_debug_ratelimited("event FIFO is full - event dropped\n"); return IRQ_HANDLED; } |