From: Yang Yingliang <yangyingliang@huawei.com>
To: <linux-wireless@vger.kernel.org>, <netdev@vger.kernel.org>
Cc: <johannes@sipsolutions.net>
Subject: [PATCH -next] rfkill: remove BUG_ON() in core.c
Date: Fri, 21 Oct 2022 21:01:04 +0800 [thread overview]
Message-ID: <20221021130104.469966-1-yangyingliang@huawei.com> (raw)
Replace BUG_ON() with pointer check to handle fault more gracefully.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
net/rfkill/core.c | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/net/rfkill/core.c b/net/rfkill/core.c
index dac4fdc7488a..5fc96fa24eda 100644
--- a/net/rfkill/core.c
+++ b/net/rfkill/core.c
@@ -150,9 +150,8 @@ EXPORT_SYMBOL(rfkill_get_led_trigger_name);
void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
{
- BUG_ON(!rfkill);
-
- rfkill->ledtrigname = name;
+ if (rfkill)
+ rfkill->ledtrigname = name;
}
EXPORT_SYMBOL(rfkill_set_led_trigger_name);
@@ -532,7 +531,8 @@ bool rfkill_set_hw_state_reason(struct rfkill *rfkill,
unsigned long flags;
bool ret, prev;
- BUG_ON(!rfkill);
+ if (!rfkill)
+ return blocked;
if (WARN(reason &
~(RFKILL_HARD_BLOCK_SIGNAL | RFKILL_HARD_BLOCK_NOT_OWNER),
@@ -581,7 +581,8 @@ bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
unsigned long flags;
bool prev, hwblock;
- BUG_ON(!rfkill);
+ if (!rfkill)
+ return blocked;
spin_lock_irqsave(&rfkill->lock, flags);
prev = !!(rfkill->state & RFKILL_BLOCK_SW);
@@ -607,8 +608,8 @@ void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked)
{
unsigned long flags;
- BUG_ON(!rfkill);
- BUG_ON(rfkill->registered);
+ if (!rfkill || rfkill->registered)
+ return;
spin_lock_irqsave(&rfkill->lock, flags);
__rfkill_set_sw_state(rfkill, blocked);
@@ -622,7 +623,8 @@ void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw)
unsigned long flags;
bool swprev, hwprev;
- BUG_ON(!rfkill);
+ if (!rfkill)
+ return;
spin_lock_irqsave(&rfkill->lock, flags);
@@ -860,9 +862,7 @@ static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
void rfkill_pause_polling(struct rfkill *rfkill)
{
- BUG_ON(!rfkill);
-
- if (!rfkill->ops->poll)
+ if (!rfkill || !rfkill->ops->poll)
return;
rfkill->polling_paused = true;
@@ -872,9 +872,7 @@ EXPORT_SYMBOL(rfkill_pause_polling);
void rfkill_resume_polling(struct rfkill *rfkill)
{
- BUG_ON(!rfkill);
-
- if (!rfkill->ops->poll)
+ if (!rfkill || !rfkill->ops->poll)
return;
rfkill->polling_paused = false;
@@ -1115,7 +1113,8 @@ EXPORT_SYMBOL(rfkill_register);
void rfkill_unregister(struct rfkill *rfkill)
{
- BUG_ON(!rfkill);
+ if (!rfkill)
+ return;
if (rfkill->ops->poll)
cancel_delayed_work_sync(&rfkill->poll_work);
--
2.25.1
next reply other threads:[~2022-10-21 13:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-21 13:01 Yang Yingliang [this message]
2022-10-21 13:17 ` [PATCH -next] rfkill: remove BUG_ON() in core.c Johannes Berg
2022-10-23 8:12 ` Leon Romanovsky
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=20221021130104.469966-1-yangyingliang@huawei.com \
--to=yangyingliang@huawei.com \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox