Commit f7c86637 authored by Masatake YAMATO's avatar Masatake YAMATO Committed by Gustavo Padovan

Bluetooth: Added /proc/net/hci via bt_procfs_init()

Added /proc/net/hci via bt_procfs_init().
Signed-off-by: default avatarMasatake YAMATO <yamato@redhat.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 8c8de589
...@@ -1100,21 +1100,30 @@ int __init hci_sock_init(void) ...@@ -1100,21 +1100,30 @@ int __init hci_sock_init(void)
return err; return err;
err = bt_sock_register(BTPROTO_HCI, &hci_sock_family_ops); err = bt_sock_register(BTPROTO_HCI, &hci_sock_family_ops);
if (err < 0) if (err < 0) {
BT_ERR("HCI socket registration failed");
goto error; 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"); BT_INFO("HCI socket layer initialized");
return 0; return 0;
error: error:
BT_ERR("HCI socket registration failed");
proto_unregister(&hci_sk_proto); proto_unregister(&hci_sk_proto);
return err; return err;
} }
void hci_sock_cleanup(void) void hci_sock_cleanup(void)
{ {
bt_procfs_cleanup(&init_net, "hci");
if (bt_sock_unregister(BTPROTO_HCI) < 0) if (bt_sock_unregister(BTPROTO_HCI) < 0)
BT_ERR("HCI socket unregistration failed"); BT_ERR("HCI socket unregistration failed");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment