linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Peter Hurley <peter@hurleysoftware.com>
To: linux-bluetooth <linux-bluetooth@vger.kernel.org>
Subject: [RFC 3/4] Bluetooth: Track per-connection stats
Date: Wed, 24 Aug 2011 10:05:05 -0400	[thread overview]
Message-ID: <1314194705.2219.16.camel@THOR> (raw)

Add per-hci connection rx/tx stats and expose through debugfs
"connections" file.
---
 include/net/bluetooth/hci_core.h |   12 ++++++++++++
 net/bluetooth/hci_sysfs.c        |   17 +++++++++++++++++
 2 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 6c994c0..1f2ed18 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -208,6 +208,16 @@ struct hci_dev {
 	int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
 };
 
+struct hci_conn_stats {
+	__u32	null_rx;
+	__u32	err_rx;
+	__u32	err_tx;
+	__u32	pkt_rx;
+	__u32	pkt_tx;
+	__u32	byte_rx;
+	__u32	byte_tx;
+};
+
 struct hci_conn {
 	struct list_head list;
 
@@ -253,6 +263,8 @@ struct hci_conn {
 	struct work_struct work_add;
 	struct work_struct work_del;
 
+	struct hci_conn_stats stats;
+
 	struct device	dev;
 	atomic_t	devref;
 
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index 3d00769..0775398 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -568,6 +568,23 @@ static int connections_show(struct seq_file *f, void *p)
 				atomic_read(&c->devref));
 	}
 
+	seq_printf(f, "\n\n                  Rx                           "
+					"Tx\n");
+	seq_printf(f,     "Dest              bytes       pkt    err null  "
+					"bytes       pkt    err unack\n");
+
+	list_for_each(l, &h->list) {
+		struct hci_conn *c;
+		c = list_entry(l, struct hci_conn, list);
+
+		seq_printf(f,"%s %-11u %-6u %-3u %-5u %-11u %-6u %-3u %u\n",
+				batostr(&c->dst),
+				c->stats.byte_rx, c->stats.pkt_rx,
+				c->stats.err_rx, c->stats.null_rx,
+				c->stats.byte_tx, c->stats.pkt_tx,
+				c->stats.err_tx, c->sent);
+	};
+
 	hci_dev_unlock_bh(hdev);
 
 	return 0;
-- 
1.7.4.1


             reply	other threads:[~2011-08-24 14:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-24 14:05 Peter Hurley [this message]
2011-09-02 17:48 ` [RFC 3/4] Bluetooth: Track per-connection stats Gustavo Padovan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1314194705.2219.16.camel@THOR \
    --to=peter@hurleysoftware.com \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).