Re: [syzbot] [fs?] WARNING in netdev_queue_update_kobjects (2)

From: Hillf Danton
Date: Tue Apr 23 2024 - 18:47:07 EST


On Mon, 22 Apr 2024 08:46:25 -0700
> syzbot found the following issue on:
>
> HEAD commit: f99c5f563c17 Merge tag 'nf-24-03-21' of git://git.kernel.o..
> git tree: net
> C reproducer: https://syzkaller.appspot.com/x/repro.c?x=141dd66f180000

#syz test https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 3cdb45594619

--- x/net/bluetooth/bnep/core.c
+++ y/net/bluetooth/bnep/core.c
@@ -540,16 +540,6 @@ static int bnep_session(void *arg)
return 0;
}

-static struct device *bnep_get_device(struct bnep_session *session)
-{
- struct l2cap_conn *conn = l2cap_pi(session->sock->sk)->chan->conn;
-
- if (!conn || !conn->hcon)
- return NULL;
-
- return &conn->hcon->dev;
-}
-
static const struct device_type bnep_type = {
.name = "bluetooth",
};
@@ -618,7 +608,6 @@ int bnep_add_connection(struct bnep_conn
bnep_set_default_proto_filter(s);
#endif

- SET_NETDEV_DEV(dev, bnep_get_device(s));
SET_NETDEV_DEVTYPE(dev, &bnep_type);

err = register_netdev(dev);
--