Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327483
b: refs/heads/master
c: c6f5df1
h: refs/heads/master
i:
  327481: 9a919b1
  327479: 8a2d1d8
v: v3
  • Loading branch information
Masatake YAMATO authored and Gustavo Padovan committed Aug 6, 2012
1 parent 2bf00fe commit 0d76b9a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5b28d95c13e876037d2c692e61862bb3e98249af
refs/heads/master: c6f5df16a2710e64090078dfbaa86c54a27c0874
14 changes: 12 additions & 2 deletions trunk/net/bluetooth/rfcomm/sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1033,8 +1033,17 @@ int __init rfcomm_init_sockets(void)
return err;

err = bt_sock_register(BTPROTO_RFCOMM, &rfcomm_sock_family_ops);
if (err < 0)
if (err < 0) {
BT_ERR("RFCOMM socket layer registration failed");
goto error;
}

err = bt_procfs_init(THIS_MODULE, &init_net, "rfcomm", &rfcomm_sk_list, NULL);
if (err < 0) {
BT_ERR("Failed to create RFCOMM proc file");
bt_sock_unregister(BTPROTO_RFCOMM);
goto error;
}

if (bt_debugfs) {
rfcomm_sock_debugfs = debugfs_create_file("rfcomm", 0444,
Expand All @@ -1048,13 +1057,14 @@ int __init rfcomm_init_sockets(void)
return 0;

error:
BT_ERR("RFCOMM socket layer registration failed");
proto_unregister(&rfcomm_proto);
return err;
}

void __exit rfcomm_cleanup_sockets(void)
{
bt_procfs_cleanup(&init_net, "rfcomm");

debugfs_remove(rfcomm_sock_debugfs);

if (bt_sock_unregister(BTPROTO_RFCOMM) < 0)
Expand Down

0 comments on commit 0d76b9a

Please sign in to comment.