The vis server is supposed to use netlink when available. This allows to work on systems without debugfs and under network namespaces. Thus it is now not strictly required anymore to have debugfs available.
Signed-off-by: Sven Eckelmann sven@narfation.org --- vis/vis.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/vis/vis.c b/vis/vis.c index f4d13c7..51d7f5c 100644 --- a/vis/vis.c +++ b/vis/vis.c @@ -1120,13 +1120,7 @@ static struct globals *vis_init(int argc, char *argv[])
static int vis_server(struct globals *globals) { - char *debugfs_mnt; - - debugfs_mnt = debugfs_mount(NULL); - if (!debugfs_mnt) { - fprintf(stderr, "Error - can't mount or find debugfs\n"); - return EXIT_FAILURE; - } + debugfs_mount(NULL);
globals->push = (struct alfred_push_data_v0 *) globals->buf; globals->vis_data = (struct vis_v1 *) (globals->buf + sizeof(*globals->push) + sizeof(struct alfred_data));
On Tuesday, November 1, 2016 1:19:37 PM CET Sven Eckelmann wrote:
The vis server is supposed to use netlink when available. This allows to work on systems without debugfs and under network namespaces. Thus it is now not strictly required anymore to have debugfs available.
Signed-off-by: Sven Eckelmann sven@narfation.org
Applied in a580287.
Thanks, Simon
b.a.t.m.a.n@lists.open-mesh.org