|
@@ -32,6 +32,7 @@
|
|
|
#include "soft-interface.h"
|
|
|
#include "vis.h"
|
|
|
#include "icmp_socket.h"
|
|
|
+#include "bridge_loop_avoidance.h"
|
|
|
|
|
|
static struct dentry *bat_debugfs;
|
|
|
|
|
@@ -244,6 +245,13 @@ static int transtable_global_open(struct inode *inode, struct file *file)
|
|
|
return single_open(file, tt_global_seq_print_text, net_dev);
|
|
|
}
|
|
|
|
|
|
+static int bla_claim_table_open(struct inode *inode, struct file *file)
|
|
|
+{
|
|
|
+ struct net_device *net_dev = (struct net_device *)inode->i_private;
|
|
|
+ return single_open(file, bla_claim_table_seq_print_text, net_dev);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
static int transtable_local_open(struct inode *inode, struct file *file)
|
|
|
{
|
|
|
struct net_device *net_dev = (struct net_device *)inode->i_private;
|
|
@@ -277,6 +285,7 @@ static BAT_DEBUGINFO(routing_algos, S_IRUGO, bat_algorithms_open);
|
|
|
static BAT_DEBUGINFO(originators, S_IRUGO, originators_open);
|
|
|
static BAT_DEBUGINFO(gateways, S_IRUGO, gateways_open);
|
|
|
static BAT_DEBUGINFO(transtable_global, S_IRUGO, transtable_global_open);
|
|
|
+static BAT_DEBUGINFO(bla_claim_table, S_IRUGO, bla_claim_table_open);
|
|
|
static BAT_DEBUGINFO(transtable_local, S_IRUGO, transtable_local_open);
|
|
|
static BAT_DEBUGINFO(vis_data, S_IRUGO, vis_data_open);
|
|
|
|
|
@@ -284,6 +293,7 @@ static struct bat_debuginfo *mesh_debuginfos[] = {
|
|
|
&bat_debuginfo_originators,
|
|
|
&bat_debuginfo_gateways,
|
|
|
&bat_debuginfo_transtable_global,
|
|
|
+ &bat_debuginfo_bla_claim_table,
|
|
|
&bat_debuginfo_transtable_local,
|
|
|
&bat_debuginfo_vis_data,
|
|
|
NULL,
|