From: Laura Garcia Liebana <nevola@gmail.com>
To: outreachy-kernel@googlegroups.com
Subject: [PATCH] staging: nvec: Avoid the use of BUG_ON
Date: Sun, 21 Feb 2016 09:15:56 +0100 [thread overview]
Message-ID: <20160221081553.GA4327@sonyv> (raw)
Prevent a kernel panic by avoiding the use of the BUG_ON macro and using the
WARN_ON macro instead. Checkpatch detected this issue.
Signed-off-by: Laura Garcia Liebana <nevola@gmail.com>
---
drivers/staging/nvec/nvec.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index c335ae2..3b5b94f 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -641,11 +641,21 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
nvec_msg_free(nvec, nvec->rx);
nvec->state = 3;
nvec_tx_set(nvec);
- BUG_ON(nvec->tx->size < 1);
+ if (WARN_ON(nvec->tx->size < 1)) {
+ dev_err(nvec->dev,
+ "Invalid TX size\n");
+ nvec->state = 0;
+ break;
+ }
to_send = nvec->tx->data[0];
nvec->tx->pos = 1;
} else if (status == (I2C_SL_IRQ)) {
- BUG_ON(nvec->rx == NULL);
+ if (WARN_ON(!nvec->rx)) {
+ dev_err(nvec->dev,
+ "Invalid RX\n");
+ nvec->state = 0;
+ break;
+ }
nvec->rx->data[1] = received;
nvec->rx->pos = 2;
nvec->state = 4;
--
2.7.0
next reply other threads:[~2016-02-21 8:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-21 8:15 Laura Garcia Liebana [this message]
2016-02-21 12:31 ` [Outreachy kernel] [PATCH] staging: nvec: Avoid the use of BUG_ON Julia Lawall
2016-02-21 16:51 ` Laura Garcia
2016-02-22 0:43 ` Julia Lawall
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160221081553.GA4327@sonyv \
--to=nevola@gmail.com \
--cc=outreachy-kernel@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.