Skip to content

Commit

Permalink
Bluetooth: Added /proc/net/hci via bt_procfs_init()
Browse files Browse the repository at this point in the history
Added /proc/net/hci via bt_procfs_init().

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
  • Loading branch information
Masatake YAMATO authored and Gustavo Padovan committed Aug 6, 2012
1 parent 8c8de58 commit f7c8663
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions net/bluetooth/hci_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,21 +1100,30 @@ int __init hci_sock_init(void)
return err;

err = bt_sock_register(BTPROTO_HCI, &hci_sock_family_ops);
if (err < 0)
if (err < 0) {
BT_ERR("HCI socket registration failed");
goto error;
}

err = bt_procfs_init(THIS_MODULE, &init_net, "hci", &hci_sk_list, NULL);
if (err < 0) {
BT_ERR("Failed to create HCI proc file");
bt_sock_unregister(BTPROTO_HCI);
goto error;
}

BT_INFO("HCI socket layer initialized");

return 0;

error:
BT_ERR("HCI socket registration failed");
proto_unregister(&hci_sk_proto);
return err;
}

void hci_sock_cleanup(void)
{
bt_procfs_cleanup(&init_net, "hci");
if (bt_sock_unregister(BTPROTO_HCI) < 0)
BT_ERR("HCI socket unregistration failed");

Expand Down

0 comments on commit f7c8663

Please sign in to comment.