All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: L2CAP extended feature mask update
@ 2011-07-05 12:35 Emeltchenko Andrei
  2011-07-05 16:00 ` Gustavo Padovan
  0 siblings, 1 reply; 3+ messages in thread
From: Emeltchenko Andrei @ 2011-07-05 12:35 UTC (permalink / raw)
  To: linux-bluetooth

From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>

Update L2CAP extended feature mask to reflect recent BT spec.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
---
 include/net/bluetooth/l2cap.h |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index 9c18e55..d85e55c 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -92,13 +92,17 @@ struct l2cap_conninfo {
 #define L2CAP_CONN_PARAM_UPDATE_REQ	0x12
 #define L2CAP_CONN_PARAM_UPDATE_RSP	0x13
 
-/* L2CAP feature mask */
+/* L2CAP extended feature mask */
 #define L2CAP_FEAT_FLOWCTL	0x00000001
 #define L2CAP_FEAT_RETRANS	0x00000002
+#define L2CAP_FEAT_BIDIR_QOS	0x00000004
 #define L2CAP_FEAT_ERTM		0x00000008
 #define L2CAP_FEAT_STREAMING	0x00000010
 #define L2CAP_FEAT_FCS		0x00000020
+#define L2CAP_FEAT_EXT_FLOW	0x00000040
 #define L2CAP_FEAT_FIXED_CHAN	0x00000080
+#define L2CAP_FEAT_EXT_WINDOW	0x00000100
+#define L2CAP_FEAT_UCD		0x00000200
 
 /* L2CAP checksum option */
 #define L2CAP_FCS_NONE		0x00
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: L2CAP extended feature mask update
  2011-07-05 12:35 [PATCH] Bluetooth: L2CAP extended feature mask update Emeltchenko Andrei
@ 2011-07-05 16:00 ` Gustavo Padovan
  2011-07-06  7:17   ` Andrei Emeltchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Gustavo Padovan @ 2011-07-05 16:00 UTC (permalink / raw)
  To: Emeltchenko Andrei; +Cc: linux-bluetooth

Hi Andrei,

* Emeltchenko Andrei <Andrei.Emeltchenko.news@gmail.com> [2011-07-05 15:35:22 +0300]:

> From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> 
> Update L2CAP extended feature mask to reflect recent BT spec.
> 
> Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> ---
>  include/net/bluetooth/l2cap.h |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
> 
> diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
> index 9c18e55..d85e55c 100644
> --- a/include/net/bluetooth/l2cap.h
> +++ b/include/net/bluetooth/l2cap.h
> @@ -92,13 +92,17 @@ struct l2cap_conninfo {
>  #define L2CAP_CONN_PARAM_UPDATE_REQ	0x12
>  #define L2CAP_CONN_PARAM_UPDATE_RSP	0x13
>  
> -/* L2CAP feature mask */
> +/* L2CAP extended feature mask */
>  #define L2CAP_FEAT_FLOWCTL	0x00000001
>  #define L2CAP_FEAT_RETRANS	0x00000002
> +#define L2CAP_FEAT_BIDIR_QOS	0x00000004
>  #define L2CAP_FEAT_ERTM		0x00000008
>  #define L2CAP_FEAT_STREAMING	0x00000010
>  #define L2CAP_FEAT_FCS		0x00000020
> +#define L2CAP_FEAT_EXT_FLOW	0x00000040
>  #define L2CAP_FEAT_FIXED_CHAN	0x00000080
> +#define L2CAP_FEAT_EXT_WINDOW	0x00000100
> +#define L2CAP_FEAT_UCD		0x00000200

I don't see the point in adding if we are not using them. Let's add them when
we have code that uses such macros.

	Gustavo

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: L2CAP extended feature mask update
  2011-07-05 16:00 ` Gustavo Padovan
@ 2011-07-06  7:17   ` Andrei Emeltchenko
  0 siblings, 0 replies; 3+ messages in thread
From: Andrei Emeltchenko @ 2011-07-06  7:17 UTC (permalink / raw)
  To: linux-bluetooth

Hi Gustavo,

On Tue, Jul 05, 2011 at 01:00:28PM -0300, Gustavo Padovan wrote:
> Hi Andrei,
> 
> * Emeltchenko Andrei <Andrei.Emeltchenko.news@gmail.com> [2011-07-05 15:35:22 +0300]:
> 
> > From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> > 
> > Update L2CAP extended feature mask to reflect recent BT spec.
> > 
> > Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> > ---
> >  include/net/bluetooth/l2cap.h |    6 +++++-
> >  1 files changed, 5 insertions(+), 1 deletions(-)
> > 
> > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
> > index 9c18e55..d85e55c 100644
> > --- a/include/net/bluetooth/l2cap.h
> > +++ b/include/net/bluetooth/l2cap.h
> > @@ -92,13 +92,17 @@ struct l2cap_conninfo {
> >  #define L2CAP_CONN_PARAM_UPDATE_REQ	0x12
> >  #define L2CAP_CONN_PARAM_UPDATE_RSP	0x13
> >  
> > -/* L2CAP feature mask */
> > +/* L2CAP extended feature mask */
> >  #define L2CAP_FEAT_FLOWCTL	0x00000001
> >  #define L2CAP_FEAT_RETRANS	0x00000002
> > +#define L2CAP_FEAT_BIDIR_QOS	0x00000004
> >  #define L2CAP_FEAT_ERTM		0x00000008
> >  #define L2CAP_FEAT_STREAMING	0x00000010
> >  #define L2CAP_FEAT_FCS		0x00000020
> > +#define L2CAP_FEAT_EXT_FLOW	0x00000040
> >  #define L2CAP_FEAT_FIXED_CHAN	0x00000080
> > +#define L2CAP_FEAT_EXT_WINDOW	0x00000100
> > +#define L2CAP_FEAT_UCD		0x00000200
> 
> I don't see the point in adding if we are not using them. Let's add them when
> we have code that uses such macros.

Those values are used in user space tools like l2test and hcidump, so I
was thinking to keep headers for userspace/kernel in sync.

BTW: Do we really need to have 2 sets of headers? 
Can we use (#if defined __KERNEL__) to separate kernel-specific code?

Best regards 
Andrei Emeltchenko 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-07-06  7:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-05 12:35 [PATCH] Bluetooth: L2CAP extended feature mask update Emeltchenko Andrei
2011-07-05 16:00 ` Gustavo Padovan
2011-07-06  7:17   ` Andrei Emeltchenko

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.