public inbox for b.a.t.m.a.n@lists.open-mesh.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch
  2011-09-25 16:05 [B.A.T.M.A.N.] batman-adv 2011.2.0 hop somtimes does not work Antonio Quartulli
@ 2011-09-25 16:06 ` Antonio Quartulli
  0 siblings, 0 replies; 5+ messages in thread
From: Antonio Quartulli @ 2011-09-25 16:06 UTC (permalink / raw)
  To: b.a.t.m.a.n

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
---
 translation-table.c |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/translation-table.c b/translation-table.c
index 7de9960..e7bac85 100644
--- a/translation-table.c
+++ b/translation-table.c
@@ -258,9 +258,14 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
 	spin_lock_bh(&bat_priv->tt_changes_list_lock);
 	atomic_set(&bat_priv->tt_local_changes, 0);
 
+	printk("TT_BUG Preparing OGM buffer\n");
+
 	list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
 			list) {
 		if (count < tot_changes) {
+			printk("TT_BUG Copying flags: 0x%x addr: %pM\n",
+					entry->change.flags,
+					entry->change.addr);
 			memcpy(buff + tt_len(count),
 			       &entry->change, sizeof(struct tt_change));
 			count++;
@@ -270,6 +275,8 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
 	}
 	spin_unlock_bh(&bat_priv->tt_changes_list_lock);
 
+	printk("TT_BUG Copied %d addresses\n", count);
+
 	/* Keep the buffer for possible tt_request */
 	spin_lock_bh(&bat_priv->tt_buff_lock);
 	kfree(bat_priv->tt_buff);
@@ -1407,7 +1414,11 @@ static void _tt_update_changes(struct bat_priv *bat_priv,
 {
 	int i;
 
+	printk("TT_BUG Received %d changes\n", tt_num_changes);
+
 	for (i = 0; i < tt_num_changes; i++) {
+		printk("TT_BUG flags: 0x%x %pM\n", (tt_change + i)->flags,
+				(tt_change + i)->addr);
 		if ((tt_change + i)->flags & TT_CLIENT_DEL)
 			tt_global_del(bat_priv, orig_node,
 				      (tt_change + i)->addr,
@@ -1505,12 +1516,16 @@ void handle_tt_response(struct bat_priv *bat_priv,
 	if (!orig_node)
 		goto out;
 
-	if (tt_response->flags & TT_FULL_TABLE)
+	if (tt_response->flags & TT_FULL_TABLE) {
+		printk("TT_BUG Got full table on response\n");
 		tt_fill_gtable(bat_priv, tt_response);
-	else
+	}
+	else{
+		printk("TT_BUG Got diff\n");
 		tt_update_changes(bat_priv, orig_node, tt_response->tt_data,
 				  tt_response->ttvn,
 				  (struct tt_change *)(tt_response + 1));
+	}
 
 	/* Delete the tt_req_node from pending tt_requests list */
 	spin_lock_bh(&bat_priv->tt_req_list_lock);
-- 
1.7.3.4


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

* [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch
  2011-09-26 21:14 [B.A.T.M.A.N.] batman-adv 2011.2.0 hop somtimes does not work laurent
@ 2011-09-26 22:49 ` Antonio Quartulli
  0 siblings, 0 replies; 5+ messages in thread
From: Antonio Quartulli @ 2011-09-26 22:49 UTC (permalink / raw)
  To: b.a.t.m.a.n

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
---
 translation-table.c |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/translation-table.c b/translation-table.c
index 7de9960..e7bac85 100644
--- a/translation-table.c
+++ b/translation-table.c
@@ -258,9 +258,14 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
 	spin_lock_bh(&bat_priv->tt_changes_list_lock);
 	atomic_set(&bat_priv->tt_local_changes, 0);
 
+	printk("TT_BUG Preparing OGM buffer\n");
+
 	list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
 			list) {
 		if (count < tot_changes) {
+			printk("TT_BUG Copying flags: 0x%x addr: %pM\n",
+					entry->change.flags,
+					entry->change.addr);
 			memcpy(buff + tt_len(count),
 			       &entry->change, sizeof(struct tt_change));
 			count++;
@@ -270,6 +275,8 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
 	}
 	spin_unlock_bh(&bat_priv->tt_changes_list_lock);
 
+	printk("TT_BUG Copied %d addresses\n", count);
+
 	/* Keep the buffer for possible tt_request */
 	spin_lock_bh(&bat_priv->tt_buff_lock);
 	kfree(bat_priv->tt_buff);
@@ -1407,7 +1414,11 @@ static void _tt_update_changes(struct bat_priv *bat_priv,
 {
 	int i;
 
+	printk("TT_BUG Received %d changes\n", tt_num_changes);
+
 	for (i = 0; i < tt_num_changes; i++) {
+		printk("TT_BUG flags: 0x%x %pM\n", (tt_change + i)->flags,
+				(tt_change + i)->addr);
 		if ((tt_change + i)->flags & TT_CLIENT_DEL)
 			tt_global_del(bat_priv, orig_node,
 				      (tt_change + i)->addr,
@@ -1505,12 +1516,16 @@ void handle_tt_response(struct bat_priv *bat_priv,
 	if (!orig_node)
 		goto out;
 
-	if (tt_response->flags & TT_FULL_TABLE)
+	if (tt_response->flags & TT_FULL_TABLE) {
+		printk("TT_BUG Got full table on response\n");
 		tt_fill_gtable(bat_priv, tt_response);
-	else
+	}
+	else{
+		printk("TT_BUG Got diff\n");
 		tt_update_changes(bat_priv, orig_node, tt_response->tt_data,
 				  tt_response->ttvn,
 				  (struct tt_change *)(tt_response + 1));
+	}
 
 	/* Delete the tt_req_node from pending tt_requests list */
 	spin_lock_bh(&bat_priv->tt_req_list_lock);
-- 
1.7.3.4


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

* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch
       [not found] <1317110464-7089-1-git-send-email-ordex@autistici.org>
@ 2011-09-27 21:15 ` laurent
  2011-09-27 21:42   ` laurent
  0 siblings, 1 reply; 5+ messages in thread
From: laurent @ 2011-09-27 21:15 UTC (permalink / raw)
  To: Antonio Quartulli, b.a.t.m.a.n

[-- Attachment #1: Type: text/plain, Size: 2584 bytes --]

Hello,

I finally had a new firmware with your new patch.

There is the new logs, hope it help. I am working late today if you need
more.

Best,

Laurent

On 27/09/2011 10:01, Antonio Quartulli wrote:
> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
> ---
>  translation-table.c |   19 +++++++++++++++++--
>  1 files changed, 17 insertions(+), 2 deletions(-)
>
> diff --git a/translation-table.c b/translation-table.c
> index 7de9960..8cfccae 100644
> --- a/translation-table.c
> +++ b/translation-table.c
> @@ -258,9 +258,14 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
>  	spin_lock_bh(&bat_priv->tt_changes_list_lock);
>  	atomic_set(&bat_priv->tt_local_changes, 0);
>  
> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Preparing OGM buffer\n");
> +
>  	list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
>  			list) {
>  		if (count < tot_changes) {
> +			bat_dbg(DBG_TT, bat_priv, "TT_BUG Copying flags: 0x%x addr: %pM\n",
> +					entry->change.flags,
> +					entry->change.addr);
>  			memcpy(buff + tt_len(count),
>  			       &entry->change, sizeof(struct tt_change));
>  			count++;
> @@ -270,6 +275,8 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
>  	}
>  	spin_unlock_bh(&bat_priv->tt_changes_list_lock);
>  
> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Copied %d addresses\n", count);
> +
>  	/* Keep the buffer for possible tt_request */
>  	spin_lock_bh(&bat_priv->tt_buff_lock);
>  	kfree(bat_priv->tt_buff);
> @@ -1407,7 +1414,11 @@ static void _tt_update_changes(struct bat_priv *bat_priv,
>  {
>  	int i;
>  
> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Received %d changes\n", tt_num_changes);
> +
>  	for (i = 0; i < tt_num_changes; i++) {
> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG flags: 0x%x %pM\n", (tt_change + i)->flags,
> +				(tt_change + i)->addr);
>  		if ((tt_change + i)->flags & TT_CLIENT_DEL)
>  			tt_global_del(bat_priv, orig_node,
>  				      (tt_change + i)->addr,
> @@ -1505,12 +1516,16 @@ void handle_tt_response(struct bat_priv *bat_priv,
>  	if (!orig_node)
>  		goto out;
>  
> -	if (tt_response->flags & TT_FULL_TABLE)
> +	if (tt_response->flags & TT_FULL_TABLE) {
> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG Got full table on response\n");
>  		tt_fill_gtable(bat_priv, tt_response);
> -	else
> +	}
> +	else{
> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG Got diff\n");
>  		tt_update_changes(bat_priv, orig_node, tt_response->tt_data,
>  				  tt_response->ttvn,
>  				  (struct tt_change *)(tt_response + 1));
> +	}
>  
>  	/* Delete the tt_req_node from pending tt_requests list */
>  	spin_lock_bh(&bat_priv->tt_req_list_lock);


[-- Attachment #2: log_custom.zip --]
[-- Type: application/zip, Size: 21058 bytes --]

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

* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch
  2011-09-27 21:15 ` [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch laurent
@ 2011-09-27 21:42   ` laurent
  2011-09-29 13:56     ` Antonio Quartulli
  0 siblings, 1 reply; 5+ messages in thread
From: laurent @ 2011-09-27 21:42 UTC (permalink / raw)
  To: Antonio Quartulli, b.a.t.m.a.n

[-- Attachment #1: Type: text/plain, Size: 2823 bytes --]

this is a log level 4 for the node 192.168.1.105 , the file on the zip
file I sent  do not show a lot of info

Laurent

On 27/09/2011 23:15, laurent wrote:
> Hello,
>
> I finally had a new firmware with your new patch.
>
> There is the new logs, hope it help. I am working late today if you need
> more.
>
> Best,
>
> Laurent
>
> On 27/09/2011 10:01, Antonio Quartulli wrote:
>> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
>> ---
>>  translation-table.c |   19 +++++++++++++++++--
>>  1 files changed, 17 insertions(+), 2 deletions(-)
>>
>> diff --git a/translation-table.c b/translation-table.c
>> index 7de9960..8cfccae 100644
>> --- a/translation-table.c
>> +++ b/translation-table.c
>> @@ -258,9 +258,14 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
>>  	spin_lock_bh(&bat_priv->tt_changes_list_lock);
>>  	atomic_set(&bat_priv->tt_local_changes, 0);
>>  
>> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Preparing OGM buffer\n");
>> +
>>  	list_for_each_entry_safe(entry, safe, &bat_priv->tt_changes_list,
>>  			list) {
>>  		if (count < tot_changes) {
>> +			bat_dbg(DBG_TT, bat_priv, "TT_BUG Copying flags: 0x%x addr: %pM\n",
>> +					entry->change.flags,
>> +					entry->change.addr);
>>  			memcpy(buff + tt_len(count),
>>  			       &entry->change, sizeof(struct tt_change));
>>  			count++;
>> @@ -270,6 +275,8 @@ int tt_changes_fill_buffer(struct bat_priv *bat_priv,
>>  	}
>>  	spin_unlock_bh(&bat_priv->tt_changes_list_lock);
>>  
>> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Copied %d addresses\n", count);
>> +
>>  	/* Keep the buffer for possible tt_request */
>>  	spin_lock_bh(&bat_priv->tt_buff_lock);
>>  	kfree(bat_priv->tt_buff);
>> @@ -1407,7 +1414,11 @@ static void _tt_update_changes(struct bat_priv *bat_priv,
>>  {
>>  	int i;
>>  
>> +	bat_dbg(DBG_TT, bat_priv, "TT_BUG Received %d changes\n", tt_num_changes);
>> +
>>  	for (i = 0; i < tt_num_changes; i++) {
>> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG flags: 0x%x %pM\n", (tt_change + i)->flags,
>> +				(tt_change + i)->addr);
>>  		if ((tt_change + i)->flags & TT_CLIENT_DEL)
>>  			tt_global_del(bat_priv, orig_node,
>>  				      (tt_change + i)->addr,
>> @@ -1505,12 +1516,16 @@ void handle_tt_response(struct bat_priv *bat_priv,
>>  	if (!orig_node)
>>  		goto out;
>>  
>> -	if (tt_response->flags & TT_FULL_TABLE)
>> +	if (tt_response->flags & TT_FULL_TABLE) {
>> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG Got full table on response\n");
>>  		tt_fill_gtable(bat_priv, tt_response);
>> -	else
>> +	}
>> +	else{
>> +		bat_dbg(DBG_TT, bat_priv, "TT_BUG Got diff\n");
>>  		tt_update_changes(bat_priv, orig_node, tt_response->tt_data,
>>  				  tt_response->ttvn,
>>  				  (struct tt_change *)(tt_response + 1));
>> +	}
>>  
>>  	/* Delete the tt_req_node from pending tt_requests list */
>>  	spin_lock_bh(&bat_priv->tt_req_list_lock);


[-- Attachment #2: log4105 --]
[-- Type: text/plain, Size: 40989 bytes --]

5:2e via 00:15:6d:ad:d3:2b [F]
[  42949491] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949491] TT_BUG Got full table on response
[  42949491] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949491] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949491] TT_BUG Received 2 changes
[  42949491] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949491] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949491] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949491] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949492] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949492] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949492] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949492] TT_BUG Got full table on response
[  42949492] TT_BUG Received 2 changes
[  42949492] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949492] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949492] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949492] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949492] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949492] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949492] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949492] TT_BUG Got full table on response
[  42949492] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949492] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949492] TT_BUG Received 2 changes
[  42949492] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949492] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949492] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949492] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949492] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949492] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949492] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949492] TT_BUG Got full table on response
[  42949492] TT_BUG Received 2 changes
[  42949492] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949492] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949492] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949492] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949492] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949492] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949492] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949492] TT_BUG Got full table on response
[  42949492] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949492] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949492] TT_BUG Received 2 changes
[  42949492] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949492] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949492] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949492] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949493] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949493] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949493] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949493] TT_BUG Got full table on response
[  42949493] TT_BUG Received 2 changes
[  42949493] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949493] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949493] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949493] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949493] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949493] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949493] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949493] TT_BUG Got full table on response
[  42949493] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949493] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949493] TT_BUG Received 2 changes
[  42949493] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949493] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949493] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949493] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949493] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949493] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949493] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949493] TT_BUG Got full table on response
[  42949493] TT_BUG Received 2 changes
[  42949493] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949493] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949493] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949493] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949494] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949494] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949494] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949494] TT_BUG Got full table on response
[  42949494] TT_BUG Received 2 changes
[  42949494] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949494] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949494] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949494] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949494] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949494] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949494] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949494] TT_BUG Got full table on response
[  42949494] TT_BUG Received 2 changes
[  42949494] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949494] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949494] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949494] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949494] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949494] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949494] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949494] TT_BUG Got full table on response
[  42949494] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949494] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949494] TT_BUG Received 2 changes
[  42949494] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949494] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949494] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949494] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949495] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949495] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949495] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949495] TT_BUG Got full table on response
[  42949495] TT_BUG Received 2 changes
[  42949495] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949495] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949495] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949495] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949495] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949495] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949495] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949495] TT_BUG Got full table on response
[  42949495] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949495] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949495] TT_BUG Received 2 changes
[  42949495] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949495] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949495] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949495] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949495] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949495] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949495] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949495] TT_BUG Got full table on response
[  42949495] TT_BUG Received 2 changes
[  42949495] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949495] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949495] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949495] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949495] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949495] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949495] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949495] TT_BUG Got full table on response
[  42949495] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949495] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949495] TT_BUG Received 2 changes
[  42949495] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949495] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949495] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949495] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949496] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949496] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949496] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949496] TT_BUG Got full table on response
[  42949496] TT_BUG Received 2 changes
[  42949496] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949496] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949496] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949496] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949496] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949496] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949496] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949496] TT_BUG Got full table on response
[  42949496] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949496] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949496] TT_BUG Received 2 changes
[  42949496] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949496] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949496] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949496] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949496] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949496] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949496] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949496] TT_BUG Got full table on response
[  42949496] TT_BUG Received 2 changes
[  42949496] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949496] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949496] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949496] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949497] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949497] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949497] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949497] TT_BUG Got full table on response
[  42949497] TT_BUG Received 2 changes
[  42949497] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949497] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949497] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949497] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949497] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949497] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949497] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949497] TT_BUG Got full table on response
[  42949497] TT_BUG Received 2 changes
[  42949497] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949497] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949497] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949497] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949497] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949497] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949497] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949497] TT_BUG Got full table on response
[  42949497] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949497] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949497] TT_BUG Received 2 changes
[  42949497] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949497] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949497] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949497] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949498] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949498] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949498] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949498] TT_BUG Got full table on response
[  42949498] TT_BUG Received 2 changes
[  42949498] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949498] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949498] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949498] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949498] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949498] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949498] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949498] TT_BUG Got full table on response
[  42949498] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949498] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949498] TT_BUG Received 2 changes
[  42949498] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949498] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949498] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949498] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949498] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949498] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949498] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949498] TT_BUG Got full table on response
[  42949498] TT_BUG Received 2 changes
[  42949498] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949498] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949498] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949498] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949499] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949499] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949499] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949499] TT_BUG Got full table on response
[  42949499] TT_BUG Received 2 changes
[  42949499] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949499] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949499] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949499] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949499] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949499] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949500] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949500] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949500] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949500] TT_BUG Got full table on response
[  42949500] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949500] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949500] TT_BUG Received 2 changes
[  42949500] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949500] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949500] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949500] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949500] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949500] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949501] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949501] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949501] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949501] TT_BUG Got full table on response
[  42949501] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949501] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949501] TT_BUG Received 2 changes
[  42949501] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949501] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949501] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949501] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949501] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949501] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949501] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949501] TT_BUG Got full table on response
[  42949501] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949501] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949501] TT_BUG Received 2 changes
[  42949501] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949501] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949501] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949501] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949501] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949501] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949502] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949502] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949502] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949502] TT_BUG Got full table on response
[  42949502] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949502] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949502] TT_BUG Received 2 changes
[  42949502] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949502] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949502] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949502] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949502] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949502] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949502] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949502] TT_BUG Got full table on response
[  42949502] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949502] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949502] TT_BUG Received 2 changes
[  42949502] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949502] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949502] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949502] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949502] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949502] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949503] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949503] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949503] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949503] TT_BUG Got full table on response
[  42949503] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949503] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949503] TT_BUG Received 2 changes
[  42949503] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949503] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949503] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949503] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949503] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949503] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949503] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949503] TT_BUG Got full table on response
[  42949503] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949503] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949503] TT_BUG Received 2 changes
[  42949503] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949503] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949503] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949503] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949503] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949503] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949503] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949503] TT_BUG Got full table on response
[  42949503] TT_BUG Received 2 changes
[  42949503] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949503] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949503] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949503] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949504] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949504] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949504] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949504] TT_BUG Got full table on response
[  42949504] TT_BUG Received 2 changes
[  42949504] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949504] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949504] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949504] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949504] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949504] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949504] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949504] TT_BUG Got full table on response
[  42949504] TT_BUG Received 2 changes
[  42949504] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949504] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949504] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949504] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949505] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949505] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949505] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949505] TT_BUG Got full table on response
[  42949505] TT_BUG Received 2 changes
[  42949505] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949505] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949505] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949505] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949505] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949505] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949505] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949505] TT_BUG Got full table on response
[  42949505] TT_BUG Received 2 changes
[  42949505] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949505] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949505] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949505] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949506] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949506] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949506] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949506] TT_BUG Got full table on response
[  42949506] TT_BUG Received 2 changes
[  42949506] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949506] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949506] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949506] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949506] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949506] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949506] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949506] TT_BUG Got full table on response
[  42949506] TT_BUG Received 2 changes
[  42949506] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949506] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949506] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949506] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949506] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949506] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949506] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949506] TT_BUG Got full table on response
[  42949506] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949506] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949506] TT_BUG Received 2 changes
[  42949506] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949506] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949506] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949506] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949507] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949507] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949507] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949507] TT_BUG Got full table on response
[  42949507] TT_BUG Received 2 changes
[  42949507] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949507] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949507] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949507] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949507] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949507] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949507] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949507] TT_BUG Got full table on response
[  42949507] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949507] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949507] TT_BUG Received 2 changes
[  42949507] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949507] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949507] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949507] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949507] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949507] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949507] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949507] TT_BUG Got full table on response
[  42949507] TT_BUG Received 2 changes
[  42949507] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949507] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949507] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949507] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949508] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949508] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949508] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949508] TT_BUG Got full table on response
[  42949508] TT_BUG Received 2 changes
[  42949508] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949508] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949508] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949508] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949508] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949508] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949508] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949508] TT_BUG Got full table on response
[  42949508] TT_BUG Received 2 changes
[  42949508] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949508] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949508] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949508] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949508] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949508] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949508] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949508] TT_BUG Got full table on response
[  42949508] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e): originator time out
[  42949508] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e): originator time out
[  42949508] TT_BUG Received 2 changes
[  42949508] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949508] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949508] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949508] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949509] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949509] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949509] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949509] TT_BUG Got full table on response
[  42949509] TT_BUG Received 2 changes
[  42949509] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949509] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949509] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949509] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949509] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949509] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949509] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949509] TT_BUG Got full table on response
[  42949509] Deleting global tt entry 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32): originator time out
[  42949509] Deleting global tt entry 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32): originator time out
[  42949509] TT_BUG Received 2 changes
[  42949509] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949509] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949509] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949509] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949509] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949509] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949509] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949509] TT_BUG Got full table on response
[  42949509] TT_BUG Received 2 changes
[  42949509] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949509] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949509] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949509] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949510] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949510] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949510] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949510] TT_BUG Got full table on response
[  42949510] TT_BUG Received 2 changes
[  42949510] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949510] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949510] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949510] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949510] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949510] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949510] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949510] TT_BUG Got full table on response
[  42949510] TT_BUG Received 2 changes
[  42949510] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949510] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949510] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949510] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949511] TT inconsistency for 00:15:6d:a3:0f:32. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 6087 last_crc: 416 num_changes: 0)
[  42949511] Sending TT_REQUEST to 00:15:6d:a3:0f:32 via 00:15:6d:ad:d3:2b [F]
[  42949511] Received TT_RESPONSE from 00:15:6d:a3:0f:32 for ttvn 2 t_size: 2 [F]
[  42949511] TT_BUG Got full table on response
[  42949511] TT_BUG Received 2 changes
[  42949511] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949511] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:0f:32)
[  42949511] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949511] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:0f:32)
[  42949511] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949511] Sending TT_REQUEST to 00:15:6d:a3:15:2e via 00:15:6d:ad:d3:2b [F]
[  42949511] Received TT_RESPONSE from 00:15:6d:a3:15:2e for ttvn 2 t_size: 2 [F]
[  42949511] TT_BUG Got full table on response
[  42949511] TT_BUG Received 2 changes
[  42949511] TT_BUG flags: 0x0 00:15:6d:ae:d3:2b
[  42949511] Creating new global tt entry: 00:15:6d:ae:d3:2b (via 00:15:6d:a3:15:2e)
[  42949511] TT_BUG flags: 0x0 7e:8e:79:95:8b:7d
[  42949511] Creating new global tt entry: 7e:8e:79:95:8b:7d (via 00:15:6d:a3:15:2e)
[  42949511] TT inconsistency for 00:15:6d:a3:15:2e. Need to retrieve the correct information (ttvn: 2 last_ttvn: 2 crc: 37611 last_crc: 416 num_changes: 0)
[  42949511] Sending TT_REQUEST

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

* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch
  2011-09-27 21:42   ` laurent
@ 2011-09-29 13:56     ` Antonio Quartulli
  0 siblings, 0 replies; 5+ messages in thread
From: Antonio Quartulli @ 2011-09-29 13:56 UTC (permalink / raw)
  To: laurent; +Cc: b.a.t.m.a.n

On Tue, Sep 27, 2011 at 11:42:33 +0200, laurent wrote:
> this is a log level 4 for the node 192.168.1.105 , the file on the zip
> file I sent  do not show a lot of info

Thank you Laurent. I'll try to work on the log ASAP. I hope I can put my hands
on them this night and find out the problem. Thank you for giving us so much
information! I really appreciated it!

Cheers,

-- 
Antonio Quartulli

..each of us alone is worth nothing..
Ernesto "Che" Guevara

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

end of thread, other threads:[~2011-09-29 13:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1317110464-7089-1-git-send-email-ordex@autistici.org>
2011-09-27 21:15 ` [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch laurent
2011-09-27 21:42   ` laurent
2011-09-29 13:56     ` Antonio Quartulli
2011-09-26 21:14 [B.A.T.M.A.N.] batman-adv 2011.2.0 hop somtimes does not work laurent
2011-09-26 22:49 ` [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch Antonio Quartulli
  -- strict thread matches above, loose matches on Subject: below --
2011-09-25 16:05 [B.A.T.M.A.N.] batman-adv 2011.2.0 hop somtimes does not work Antonio Quartulli
2011-09-25 16:06 ` [B.A.T.M.A.N.] [PATCH] batman-adv: Chichek hunt started! Verbose patch Antonio Quartulli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox