diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-06 16:18:17 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-24 19:51:39 +0200 |
commit | 43b5cc5ee6bc51802dd5171c61d9240ee988e534 (patch) | |
tree | 9d68d08c4680d9958ab4c1aaad3164b9eda287c2 /zebra/zebra_mroute.c | |
parent | pimd: debug guard error message (diff) | |
download | frr-43b5cc5ee6bc51802dd5171c61d9240ee988e534.tar.xz frr-43b5cc5ee6bc51802dd5171c61d9240ee988e534.zip |
zebra: Allow S,G lookup to use RTNL_FAMILY_IPMR
This current implementation unfortunately must
ask the kernel for all mroutes because vrf's
do not have the ability to request a single
mroute at this time.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_mroute.c')
-rw-r--r-- | zebra/zebra_mroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_mroute.c b/zebra/zebra_mroute.c index 6b510f9d3..c4d674df2 100644 --- a/zebra/zebra_mroute.c +++ b/zebra/zebra_mroute.c @@ -54,7 +54,7 @@ int zebra_ipmr_route_stats(struct zserv *client, int fd, u_short length, zlog_debug("Asking for (%s,%s) mroute information", sbuf, gbuf); } - suc = kernel_get_ipmr_sg_stats(&mroute); + suc = kernel_get_ipmr_sg_stats(zvrf, &mroute); s = client->obuf; |