Re: [B.A.T.M.A.N.] [PATCHv2] batman-adv: Add the backbone gateway list to debugfs

2012-06-15 Thread Simon Wunderlich
Hey Sven, On Thu, Jun 14, 2012 at 10:43:55PM +0200, Sven Eckelmann wrote: You forgot the README and most likely the batctl part. I planned to send the batctl patch later, but README is definitly missing. Thanks! Simon signature.asc Description: Digital signature

[B.A.T.M.A.N.] [PATCH] batctl: add support for the bla backbone table in debugfs

2012-06-15 Thread Simon Wunderlich
Signed-off-by: Simon Wunderlich s...@hrz.tu-chemnitz.de --- debug.c | 10 ++ debug.h |2 ++ main.c |6 ++ 3 files changed, 18 insertions(+) diff --git a/debug.c b/debug.c index 928f81d..5dca633 100644 --- a/debug.c +++ b/debug.c @@ -70,6 +70,16 @@ void

[B.A.T.M.A.N.] [PATCHv3] batman-adv: Add the backbone gateway list to debugfs

2012-06-15 Thread Simon Wunderlich
This is especially useful if there are no claims yet, but we still want to know which gateways are using bridge loop avoidance in the network. Signed-off-by: Simon Wunderlich s...@hrz.tu-chemnitz.de --- [EDITv2: forgot to rename the function ...] [EDITv3: add README entry] --- README

Re: [B.A.T.M.A.N.] link alternation when radios are not on batman-adv router?

2012-06-15 Thread Simon Wunderlich
On Thu, Jun 14, 2012 at 04:51:01PM -0300, gto...@inti.gob.ar wrote: Hi, we are interested too in interface alternating, so we made some tests to understand how it works. As you can see on the attached sketch.png, we connected two pair of routers using their ethernet interfaces, E6 with

Re: [B.A.T.M.A.N.] [PATCH] batman-adv: fix skb-data assignment

2012-06-15 Thread Sven Eckelmann
On Thursday 14 June 2012 22:21:28 Antonio Quartulli wrote: skb_linearize(skb) possibly rearranges the skb internal data and then changes the skb-data pointer value. For this reason any other pointer in the code that was assigned skb-data before invoking skb_linearise(skb) must be re-assigned.

Re: [B.A.T.M.A.N.] [PATCH] batman-adv: fix skb-data assignment

2012-06-15 Thread Antonio Quartulli
On Fri, Jun 15, 2012 at 01:45:11PM +0200, Sven Eckelmann wrote: On Thursday 14 June 2012 22:21:28 Antonio Quartulli wrote: skb_linearize(skb) possibly rearranges the skb internal data and then changes the skb-data pointer value. For this reason any other pointer in the code that was

[B.A.T.M.A.N.] batman-adv 2012.2.0 released

2012-06-15 Thread Marek Lindner
Today, the B.A.T.M.A.N. team releases batman-adv 2012.2.0, packed with new features and improvements in various subsystems as well as the usual set of fixes and cleanups. As the kernel module always depends on the Linux kernel it was compiled against, it does not make sense to provide binaries

Re: [B.A.T.M.A.N.] [PATCH] batman-adv: fix skb-data assignment

2012-06-15 Thread Marek Lindner
On Friday, June 15, 2012 04:21:28 Antonio Quartulli wrote: skb_linearize(skb) possibly rearranges the skb internal data and then changes the skb-data pointer value. For this reason any other pointer in the code that was assigned skb-data before invoking skb_linearise(skb) must be re-assigned.

[B.A.T.M.A.N.] [PATCH] batctl: check interface support and print corresponding error message

2012-06-15 Thread Marek Lindner
Signed-off-by: Marek Lindner lindner_ma...@yahoo.de --- functions.c |7 +++ functions.h |1 + main.h |2 ++ sys.c | 17 + sys.h |1 + 5 files changed, 28 insertions(+), 0 deletions(-) diff --git a/functions.c b/functions.c index

Re: [B.A.T.M.A.N.] [PATCHv2] batman-adv: don't reroute tt_request for me

2012-06-15 Thread Antonio Quartulli
On Sat, Jun 16, 2012 at 03:50:00AM +0800, Marek Lindner wrote: On Friday, June 15, 2012 05:38:37 Antonio Quartulli wrote: If a tt_request is directed to me, it never has to be rerouted We will need a little more explanation here about what is going on and what is fixed and why we want it

Re: [B.A.T.M.A.N.] [PATCHv2] batman-adv: don't reroute tt_request for me

2012-06-15 Thread Antonio Quartulli
On Fri, Jun 15, 2012 at 10:20:35PM +0200, Antonio Quartulli wrote: On Sat, Jun 16, 2012 at 03:50:00AM +0800, Marek Lindner wrote: On Friday, June 15, 2012 05:38:37 Antonio Quartulli wrote: If a tt_request is directed to me, it never has to be rerouted We will need a little more