All of lore.kernel.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering
@ 2013-09-22 18:18 Antonio Quartulli
  2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
  2013-09-24 12:28 ` [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Marek Lindner
  0 siblings, 2 replies; 4+ messages in thread
From: Antonio Quartulli @ 2013-09-22 18:18 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Let's start the capabilities from bit 0.

Introduced by 2b1c07b918d2acc41555bbde9d538179acb308b4
("batman-adv: tvlv - add distributed arp table container")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/types.h b/types.h
index f323822..8465a55 100644
--- a/types.h
+++ b/types.h
@@ -246,7 +246,7 @@ struct batadv_orig_node {
  * @BATADV_ORIG_CAPA_HAS_NC: orig node has network coding enabled
  */
 enum batadv_orig_capabilities {
-	BATADV_ORIG_CAPA_HAS_DAT = BIT(1),
+	BATADV_ORIG_CAPA_HAS_DAT = BIT(0),
 	BATADV_ORIG_CAPA_HAS_NC = BIT(2),
 };
 
-- 
1.8.1.5


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

* [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod)
  2013-09-22 18:18 [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Antonio Quartulli
@ 2013-09-22 18:18 ` Antonio Quartulli
  2013-09-24 12:29   ` Marek Lindner
  2013-09-24 12:28 ` [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Marek Lindner
  1 sibling, 1 reply; 4+ messages in thread
From: Antonio Quartulli @ 2013-09-22 18:18 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Use bit 1 after bit 0.

Introduced by 7dd9d8992b0c197ba656a6d9a70966cea10fc2d9
("batman-adv: tvlv - add network coding container")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/types.h b/types.h
index 8465a55..04b6b0b 100644
--- a/types.h
+++ b/types.h
@@ -247,7 +247,7 @@ struct batadv_orig_node {
  */
 enum batadv_orig_capabilities {
 	BATADV_ORIG_CAPA_HAS_DAT = BIT(0),
-	BATADV_ORIG_CAPA_HAS_NC = BIT(2),
+	BATADV_ORIG_CAPA_HAS_NC = BIT(1),
 };
 
 /**
-- 
1.8.1.5


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

* Re: [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering
  2013-09-22 18:18 [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Antonio Quartulli
  2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
@ 2013-09-24 12:28 ` Marek Lindner
  1 sibling, 0 replies; 4+ messages in thread
From: Marek Lindner @ 2013-09-24 12:28 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

On Sunday 22 September 2013 20:18:27 Antonio Quartulli wrote:
> Let's start the capabilities from bit 0.
> 
> Introduced by 2b1c07b918d2acc41555bbde9d538179acb308b4
> ("batman-adv: tvlv - add distributed arp table container")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  types.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in revision a5aa462.

Thanks,
Marek


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

* Re: [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod)
  2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
@ 2013-09-24 12:29   ` Marek Lindner
  0 siblings, 0 replies; 4+ messages in thread
From: Marek Lindner @ 2013-09-24 12:29 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

On Sunday 22 September 2013 20:18:28 Antonio Quartulli wrote:
> Use bit 1 after bit 0.
> 
> Introduced by 7dd9d8992b0c197ba656a6d9a70966cea10fc2d9
> ("batman-adv: tvlv - add network coding container")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  types.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in revision 4e458f4.

Thanks,
Marek


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

end of thread, other threads:[~2013-09-24 12:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-22 18:18 [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Antonio Quartulli
2013-09-22 18:18 ` [B.A.T.M.A.N.] [PATCH 2/2 next] batman-adv: fix orig capabilities numbering (NetCod) Antonio Quartulli
2013-09-24 12:29   ` Marek Lindner
2013-09-24 12:28 ` [B.A.T.M.A.N.] [PATCH 1/2 next] batman-adv: fix orig capabilities numbering Marek Lindner

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.