From 9cd56d71a84c470aa92422144a76d42c8ff6d11d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 11 Apr 2018 11:36:25 +0200 Subject: sys/linux: add veth devices to devnames Also comment new veth code for future me. --- pkg/csource/linux_common.go | 1 - 1 file changed, 1 deletion(-) (limited to 'pkg/csource') diff --git a/pkg/csource/linux_common.go b/pkg/csource/linux_common.go index a28bc8baa..96361ad6f 100644 --- a/pkg/csource/linux_common.go +++ b/pkg/csource/linux_common.go @@ -571,7 +571,6 @@ static void initialize_netdevices(void) execute_command(0, "ip link set dev %s address %s", devnames[i], addr); execute_command(0, "ip link set dev %s up", devnames[i]); } - execute_command(0, "ip link add name bond_slave type veth peer name team_slave"); execute_command(0, "ip link set bond_slave master bond0"); execute_command(0, "ip link set team_slave master team0"); -- cgit mrf-deployment