From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 18 Jun 2012 19:04:47 +0900 (JST) Message-Id: <20120618.190447.1140868673998101856.yamato@redhat.com> In-Reply-To: <20120615080007.GD7205@aemeltch-MOBL1> References: <20120615080007.GD7205@aemeltch-MOBL1> From: Masatake YAMATO Subject: [PATCH v2 8/8] Added /proc/net/sco via bt_procfs_init() To: linux-kernel@vger.kernel.org Cc: linux-bluetooth@vger.kernel.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org List-ID: Signed-off-by: Masatake YAMATO --- net/bluetooth/sco.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index cbdd313..4f55867 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c @@ -1043,6 +1043,13 @@ int __init sco_init(void) goto error; } + err = bt_procfs_init(THIS_MODULE, &init_net, "sco", &sco_sk_list, NULL); + if (err < 0) { + BT_ERR("Failed to create SCO proc file"); + bt_sock_unregister(BTPROTO_SCO); + goto error; + } + if (bt_debugfs) { sco_debugfs = debugfs_create_file("sco", 0444, bt_debugfs, NULL, &sco_debugfs_fops); @@ -1061,6 +1068,8 @@ error: void __exit sco_exit(void) { + bt_procfs_cleanup(&init_net, "sco"); + debugfs_remove(sco_debugfs); if (bt_sock_unregister(BTPROTO_SCO) < 0) -- 1.7.10.2