diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 19:55:42 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-01 19:55:42 +0100 |
commit | 12f6fb97311c58742f305ef240f918aa5d57fa79 (patch) | |
tree | 47ba71dd454d8c1d7a110845f5a2743428d20d26 /zebra/if_ioctl_solaris.c | |
parent | zebra: Add the 'struct zebra_ns' data structure (diff) | |
download | frr-12f6fb97311c58742f305ef240f918aa5d57fa79.tar.xz frr-12f6fb97311c58742f305ef240f918aa5d57fa79.zip |
lib, zebra: The Bulk of the conversion over to NS and VRF
Convert the rest of zebra over to use a Namespae and VRF.
Signed-off-by: Vipin Kumar <vipin@cumulusnetworks.com>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/if_ioctl_solaris.c')
-rw-r--r-- | zebra/if_ioctl_solaris.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/if_ioctl_solaris.c b/zebra/if_ioctl_solaris.c index 3f33f749a..79137ccd3 100644 --- a/zebra/if_ioctl_solaris.c +++ b/zebra/if_ioctl_solaris.c @@ -351,11 +351,11 @@ interface_info_ioctl (struct interface *ifp) /* Lookup all interface information. */ void -interface_list (struct zebra_vrf *zvrf) +interface_list (struct zebra_ns *zns) { - if (zvrf->vrf_id != VRF_DEFAULT) + if (zns->ns_id != NS_DEFAULT) { - zlog_warn ("interface_list: ignore VRF %u", zvrf->vrf_id); + zlog_warn ("interface_list: ignore NS %u", zns->ns_id); return; } interface_list_ioctl (AF_INET); |