diff options
author | Dave Young <hidave.darkstar@gmail.com> | 2008-02-19 07:44:01 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-19 07:44:01 +0300 |
commit | 0cd63c8089f0f6316df1393c3a93bdbc67ab314d (patch) | |
tree | c1ce4d8c32439af25bd45cb95376258b429f576a /net/bluetooth/hci_sysfs.c | |
parent | 8f789c48448aed74fe1c07af76de8f04adacec7d (diff) | |
download | linux-0cd63c8089f0f6316df1393c3a93bdbc67ab314d.tar.xz |
bluetooth: put hci dev after del conn
Move hci_dev_put to del_conn to avoid hci dev going away before hci conn.
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/hci_sysfs.c')
-rw-r--r-- | net/bluetooth/hci_sysfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index f5aff6d0988a..767756c8fbcf 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c @@ -334,6 +334,7 @@ static int __match_tty(struct device *dev, void *data) static void del_conn(struct work_struct *work) { struct hci_conn *conn = container_of(work, struct hci_conn, work); + struct hci_dev *hdev = conn->hdev; while (1) { struct device *dev; @@ -344,8 +345,10 @@ static void del_conn(struct work_struct *work) device_move(dev, NULL); put_device(dev); } + device_del(&conn->dev); put_device(&conn->dev); + hci_dev_put(hdev); } void hci_conn_del_sysfs(struct hci_conn *conn) |