b.a.t.m.a.n.lists.open-mesh.org archive mirror
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David
@ 2012-05-10  4:54 Marek Lindner
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 2/3] " Marek Lindner
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Marek Lindner @ 2012-05-10  4:54 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Marek Lindner

Should be merged with c9619b5e07a756af43c196874e9e9e91e3251154

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
---
 bat_iv_ogm.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/bat_iv_ogm.c b/bat_iv_ogm.c
index 2a1845e..96ce556 100644
--- a/bat_iv_ogm.c
+++ b/bat_iv_ogm.c
@@ -1200,7 +1200,8 @@ static int bat_iv_ogm_receive(struct sk_buff *skb,
 		return NET_RX_DROP;
 
 	/* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
-	 * that does not have B.A.T.M.A.N. IV enabled ? */
+	 * that does not have B.A.T.M.A.N. IV enabled ?
+	 */
 	if (bat_priv->bat_algo_ops->bat_ogm_emit != bat_iv_ogm_emit)
 		return NET_RX_DROP;
 
-- 
1.7.9.1


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

* [B.A.T.M.A.N.] [PATCH 2/3] batman-adv: change comment style for David
  2012-05-10  4:54 [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David Marek Lindner
@ 2012-05-10  4:54 ` Marek Lindner
  2012-05-11  7:24   ` Marek Lindner
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 3/3] " Marek Lindner
  2012-05-11  7:22 ` [B.A.T.M.A.N.] [PATCH 1/3] " Marek Lindner
  2 siblings, 1 reply; 6+ messages in thread
From: Marek Lindner @ 2012-05-10  4:54 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Marek Lindner

Should be merged with bd83b4cfaeff6a78440b955598afccafad081dbe

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
---
 types.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/types.h b/types.h
index 15f538a..6474324 100644
--- a/types.h
+++ b/types.h
@@ -399,7 +399,8 @@ struct bat_algo_ops {
 	/* de-init routing info when hard-interface is disabled */
 	void (*bat_iface_disable)(struct hard_iface *hard_iface);
 	/* (re-)init mac addresses of the protocol information
-	 * belonging to this hard-interface */
+	 * belonging to this hard-interface
+	 */
 	void (*bat_iface_update_mac)(struct hard_iface *hard_iface);
 	/* called when primary interface is selected / changed */
 	void (*bat_primary_iface_set)(struct hard_iface *hard_iface);
-- 
1.7.9.1


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

* [B.A.T.M.A.N.] [PATCH 3/3] batman-adv: change comment style for David
  2012-05-10  4:54 [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David Marek Lindner
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 2/3] " Marek Lindner
@ 2012-05-10  4:54 ` Marek Lindner
  2012-05-11  7:30   ` Marek Lindner
  2012-05-11  7:22 ` [B.A.T.M.A.N.] [PATCH 1/3] " Marek Lindner
  2 siblings, 1 reply; 6+ messages in thread
From: Marek Lindner @ 2012-05-10  4:54 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Marek Lindner

Should be merged with f76d019194e0a88c57371df169ecc979690a04c2

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
---
 bat_iv_ogm.c |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/bat_iv_ogm.c b/bat_iv_ogm.c
index 96ce556..837c8a6 100644
--- a/bat_iv_ogm.c
+++ b/bat_iv_ogm.c
@@ -518,13 +518,12 @@ static void bat_iv_ogm_forward(struct orig_node *orig_node,
 	}
 
 	if (!is_from_best_next_hop) {
-		/**
-		* Mark the forwarded packet when it is not coming from our best
-		* next hop. We still need to forward the packet for our neighbor
-		* link quality detection to work in case the packet originated
-		* from a single hop neighbor. Otherwise we can simply drop the
-		* ogm.
-		*/
+		/* Mark the forwarded packet when it is not coming from our best
+		 * next hop. We still need to forward the packet for our neighbor
+		 * link quality detection to work in case the packet originated
+		 * from a single hop neighbor. Otherwise we can simply drop the
+		 * ogm.
+		 */
 		if (is_single_hop_neigh)
 			batman_ogm_packet->flags |= NOT_BEST_NEXT_HOP;
 		else
-- 
1.7.9.1


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

* Re: [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David
  2012-05-10  4:54 [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David Marek Lindner
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 2/3] " Marek Lindner
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 3/3] " Marek Lindner
@ 2012-05-11  7:22 ` Marek Lindner
  2 siblings, 0 replies; 6+ messages in thread
From: Marek Lindner @ 2012-05-11  7:22 UTC (permalink / raw)
  To: The list for a Better Approach To Mobile Ad-hoc Networking

On Thursday, May 10, 2012 12:54:02 Marek Lindner wrote:
> Should be merged with c9619b5e07a756af43c196874e9e9e91e3251154
> 
> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
> ---
>  bat_iv_ogm.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-

Applied in revision 8a463e4.

Regards,
Marek

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

* Re: [B.A.T.M.A.N.] [PATCH 2/3] batman-adv: change comment style for David
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 2/3] " Marek Lindner
@ 2012-05-11  7:24   ` Marek Lindner
  0 siblings, 0 replies; 6+ messages in thread
From: Marek Lindner @ 2012-05-11  7:24 UTC (permalink / raw)
  To: The list for a Better Approach To Mobile Ad-hoc Networking

On Thursday, May 10, 2012 12:54:03 Marek Lindner wrote:
> Should be merged with bd83b4cfaeff6a78440b955598afccafad081dbe
> 
> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
> ---
>  types.h |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)

Applied in revision 4bb1640.

Regards,
Marek

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

* Re: [B.A.T.M.A.N.] [PATCH 3/3] batman-adv: change comment style for David
  2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 3/3] " Marek Lindner
@ 2012-05-11  7:30   ` Marek Lindner
  0 siblings, 0 replies; 6+ messages in thread
From: Marek Lindner @ 2012-05-11  7:30 UTC (permalink / raw)
  To: The list for a Better Approach To Mobile Ad-hoc Networking

On Thursday, May 10, 2012 12:54:04 Marek Lindner wrote:
> Should be merged with f76d019194e0a88c57371df169ecc979690a04c2
> 
> Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
> ---
>  bat_iv_ogm.c |   13 ++++++-------
>  1 files changed, 6 insertions(+), 7 deletions(-)

Applied in revision cb93868.

Regards,
Marek

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

end of thread, other threads:[~2012-05-11  7:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-10  4:54 [B.A.T.M.A.N.] [PATCH 1/3] batman-adv: change comment style for David Marek Lindner
2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 2/3] " Marek Lindner
2012-05-11  7:24   ` Marek Lindner
2012-05-10  4:54 ` [B.A.T.M.A.N.] [PATCH 3/3] " Marek Lindner
2012-05-11  7:30   ` Marek Lindner
2012-05-11  7:22 ` [B.A.T.M.A.N.] [PATCH 1/3] " Marek Lindner

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