summaryrefslogtreecommitdiff
path: root/zebra/if_sysctl.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2015-10-30 05:52:29 -0700
committerDonald Sharp <sharpd@cumulusnetworks.com>2015-10-30 05:52:29 -0700
commitbe5e48abecd137b47e4493a8fd616186c61f48f7 (patch)
tree4184faeca4bb606af98deb606d9b53db3ac314b4 /zebra/if_sysctl.c
parent526e17284570266dcdd606ff163a614e6b3655a5 (diff)
parent2bed4e86e378334341e01f3afe33784ef2713e83 (diff)
Merge branch 'cmaster' of ssh://stash.cumulusnetworks.com:7999/quag/quagga into cmaster
Conflicts: zebra/rib.h zebra/zebra_rib.c zebra/zebra_vty.c
Diffstat (limited to 'zebra/if_sysctl.c')
-rw-r--r--zebra/if_sysctl.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/zebra/if_sysctl.c b/zebra/if_sysctl.c
index 1150ec1b06..e7b25d1f8f 100644
--- a/zebra/if_sysctl.c
+++ b/zebra/if_sysctl.c
@@ -29,9 +29,15 @@
#include "memory.h"
#include "ioctl.h"
#include "log.h"
+<<<<<<< HEAD
+=======
+#include "interface.h"
+#include "vrf.h"
+>>>>>>> 3c27b5f... zebra, lib/memtypes.c: the netlink sockets work per VRF
#include "zebra/rt.h"
#include "zebra/kernel_socket.h"
+#include "zebra/rib.h"
void
ifstat_update_sysctl (void)
@@ -90,7 +96,7 @@ ifstat_update_sysctl (void)
/* Interface listing up function using sysctl(). */
void
-interface_list ()
+interface_list (struct zebra_vrf *zvrf)
{
caddr_t ref, buf, end;
size_t bufsiz;
@@ -107,6 +113,12 @@ interface_list ()
0
};
+ if (zvrf->vrf_id != VRF_DEFAULT)
+ {
+ zlog_warn ("interface_list: ignore VRF %u", zvrf->vrf_id);
+ return;
+ }
+
/* Query buffer size. */
if (sysctl (mib, MIBSIZ, NULL, &bufsiz, NULL, 0) < 0)
{