syzbot
unread,Jul 6, 2026, 9:36:07 AM (yesterday) Jul 6Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to malaya...@gmail.com, malaya...@gmail.com, linux-...@vger.kernel.org, syzkall...@googlegroups.com
> Hi,
>
> Please test the following patch.
>
> #syz test
This crash does not have a reproducer. I cannot test it.
>
> diff --git a/drivers/net/ieee802154/mac802154_hwsim.c
> b/drivers/net/ieee802154/mac802154_hwsim.c
> index 6daa0f198b9f..99d52a2323ac 100644
> --- a/drivers/net/ieee802154/mac802154_hwsim.c
> +++ b/drivers/net/ieee802154/mac802154_hwsim.c
> @@ -113,7 +113,8 @@ static int hwsim_update_pib(struct ieee802154_hw
> *hw, u8 page, u8 channel,
> pib->filt_level = filt_level;
>
> rcu_assign_pointer(phy->pib, pib);
> - kfree_rcu(pib_old, rcu);
> + if (pib_old)
> + kfree_rcu(pib_old, rcu);
> return 0;
> }