linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Add NULL packet stat to hciconfig
@ 2011-07-02 17:44 Peter Hurley
  0 siblings, 0 replies; only message in thread
From: Peter Hurley @ 2011-07-02 17:44 UTC (permalink / raw)
  To: linux-bluetooth

---
 lib/hci.h         |    1 +
 tools/hciconfig.c |    5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/hci.h b/lib/hci.h
index 51184ee..7f4812d 100644
--- a/lib/hci.h
+++ b/lib/hci.h
@@ -2284,6 +2284,7 @@ struct hci_filter {
 
 /* Ioctl requests structures */
 struct hci_dev_stats {
+	uint32_t null_rx;	/* # NULL pkts recvd */
 	uint32_t err_rx;
 	uint32_t err_tx;
 	uint32_t cmd_tx;
diff --git a/tools/hciconfig.c b/tools/hciconfig.c
index cbd0d0e..cb65c06 100644
--- a/tools/hciconfig.c
+++ b/tools/hciconfig.c
@@ -1863,8 +1863,9 @@ static void print_dev_info(int ctl, struct hci_dev_info *di)
 	printf("\t%s\n", str);
 	bt_free(str);
 
-	printf("\tRX bytes:%d acl:%d sco:%d events:%d errors:%d\n",
-		st->byte_rx, st->acl_rx, st->sco_rx, st->evt_rx, st->err_rx);
+	printf("\tRX bytes:%d acl:%d sco:%d events:%d errors:%d nulls:%d\n",
+		st->byte_rx, st->acl_rx, st->sco_rx, st->evt_rx, st->err_rx,
+		st->null_rx);
 
 	printf("\tTX bytes:%d acl:%d sco:%d commands:%d errors:%d\n",
 		st->byte_tx, st->acl_tx, st->sco_tx, st->cmd_tx, st->err_tx);
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-07-02 17:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-02 17:44 [PATCH] Add NULL packet stat to hciconfig Peter Hurley

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).