* [PATCH 4/8] Added /proc/net/hci via bt_procfs_init()
@ 2012-06-14 17:17 Masatake YAMATO
2012-06-15 7:49 ` Andrei Emeltchenko
0 siblings, 1 reply; 2+ messages in thread
From: Masatake YAMATO @ 2012-06-14 17:17 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-bluetooth
Added /proc/net/hci via bt_procfs_init().
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
---
net/bluetooth/hci_sock.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c
index 5914623..3452d27 100644
--- a/net/bluetooth/hci_sock.c
+++ b/net/bluetooth/hci_sock.c
@@ -1107,21 +1107,32 @@ 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");
--
1.7.10.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 4/8] Added /proc/net/hci via bt_procfs_init()
2012-06-14 17:17 [PATCH 4/8] Added /proc/net/hci via bt_procfs_init() Masatake YAMATO
@ 2012-06-15 7:49 ` Andrei Emeltchenko
0 siblings, 0 replies; 2+ messages in thread
From: Andrei Emeltchenko @ 2012-06-15 7:49 UTC (permalink / raw)
To: Masatake YAMATO; +Cc: linux-kernel, linux-bluetooth
Hi Masatake,
On Fri, Jun 15, 2012 at 02:17:18AM +0900, Masatake YAMATO wrote:
> Added /proc/net/hci via bt_procfs_init().
>
> Signed-off-by: Masatake YAMATO <yamato@redhat.com>
> ---
> net/bluetooth/hci_sock.c | 15 +++++++++++++--
> 1 file changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c
> index 5914623..3452d27 100644
> --- a/net/bluetooth/hci_sock.c
> +++ b/net/bluetooth/hci_sock.c
> @@ -1107,21 +1107,32 @@ 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;
> + }
> +
>
too much spaces here?
Best regards
Andrei Emeltchenko
> BT_INFO("HCI socket layer initialized");
>
> return 0;
>
> error:
> - BT_ERR("HCI socket registration failed");
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-15 7:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-14 17:17 [PATCH 4/8] Added /proc/net/hci via bt_procfs_init() Masatake YAMATO
2012-06-15 7:49 ` Andrei Emeltchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox