All of lore.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@codecoup.pl>
To: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 1/2] monitor: Add support for analyzing index info
Date: Fri, 17 Jun 2016 10:26:35 +0200	[thread overview]
Message-ID: <3037568.vWaAmnrnek@ix> (raw)
In-Reply-To: <1461703933-18073-1-git-send-email-szymon.janc@codecoup.pl>

On Tuesday 26 April 2016 22:52:12 Szymon Janc wrote:
> Will now show vendor name if it was provided in snoop file.
> ---
>  monitor/analyze.c | 30 +++++++++++++++++++++++++++++-
>  1 file changed, 29 insertions(+), 1 deletion(-)
> 
> diff --git a/monitor/analyze.c b/monitor/analyze.c
> index 0f2d19a..197c7f9 100644
> --- a/monitor/analyze.c
> +++ b/monitor/analyze.c
> @@ -29,6 +29,8 @@
>  #include <stdio.h>
>  #include <string.h>
> 
> +#include "lib/bluetooth.h"
> +
>  #include "src/shared/util.h"
>  #include "src/shared/queue.h"
>  #include "src/shared/btsnoop.h"
> @@ -45,6 +47,7 @@ struct hci_dev {
>  	unsigned long num_evt;
>  	unsigned long num_acl;
>  	unsigned long num_sco;
> +	uint16_t manufacturer;
>  };
> 
>  static struct queue *dev_list;
> @@ -67,9 +70,14 @@ static void dev_destroy(void *data)
>  	}
> 
>  	printf("Found %s controller with index %u\n", str, dev->index);
> -	printf("  BD_ADDR %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
> +	printf("  BD_ADDR %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
>  			dev->bdaddr[5], dev->bdaddr[4], dev->bdaddr[3],
>  			dev->bdaddr[2], dev->bdaddr[1], dev->bdaddr[0]);
> +	if (dev->manufacturer != 0xffff)
> +		printf(" (%s)", bt_compidtostr(dev->manufacturer));
> +	printf("\n");
> +
> +
>  	printf("  %lu commands\n", dev->num_cmd);
>  	printf("  %lu events\n", dev->num_evt);
>  	printf("  %lu ACL packets\n", dev->num_acl);
> @@ -90,6 +98,7 @@ static struct hci_dev *dev_alloc(uint16_t index)
>  	}
> 
>  	dev->index = index;
> +	dev->manufacturer = 0xffff;
> 
>  	return dev;
>  }
> @@ -251,6 +260,22 @@ static void sco_pkt(struct timeval *tv, uint16_t index,
> dev->num_sco++;
>  }
> 
> +static void info_index(struct timeval *tv, uint16_t index,
> +					const void *data, uint16_t size)
> +{
> +	const struct btsnoop_opcode_index_info *hdr = data;
> +	struct hci_dev *dev;
> +
> +	data += sizeof(*hdr);
> +	size -= sizeof(*hdr);
> +
> +	dev = dev_lookup(index);
> +	if (!dev)
> +		return;
> +
> +	dev->manufacturer = hdr->manufacturer;
> +}
> +
>  void analyze_trace(const char *path)
>  {
>  	struct btsnoop *btsnoop_file;
> @@ -312,6 +337,9 @@ void analyze_trace(const char *path)
>  		case BTSNOOP_OPCODE_OPEN_INDEX:
>  		case BTSNOOP_OPCODE_CLOSE_INDEX:
>  			break;
> +		case BTSNOOP_OPCODE_INDEX_INFO:
> +			info_index(&tv, index, buf, pktlen);
> +			break;
>  		default:
>  			fprintf(stderr, "Wrong opcode %u\n", opcode);
>  			goto done;

Pushed.

-- 
pozdrawiam
Szymon Janc

      parent reply	other threads:[~2016-06-17  8:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-26 20:52 [PATCH 1/2] monitor: Add support for analyzing index info Szymon Janc
2016-04-26 20:52 ` [PATCH 2/2] monitor: Display all events type in analyze Szymon Janc
2016-06-17  8:26 ` Szymon Janc [this message]

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=3037568.vWaAmnrnek@ix \
    --to=szymon.janc@codecoup.pl \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.