diff options
author | Mark Stapp <mjs@voltanet.io> | 2018-11-15 15:11:01 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2019-01-22 19:56:48 +0100 |
commit | d37f4d6c61c21eb2973b7865d7ed5a6f74d92449 (patch) | |
tree | e9fd58a0ef39cf06e7e31139fdbbcd1901ef3f46 /zebra/zebra_vrf.h | |
parent | zebra: infra for LSP updates using dplane (diff) | |
download | frr-d37f4d6c61c21eb2973b7865d7ed5a6f74d92449.tar.xz frr-d37f4d6c61c21eb2973b7865d7ed5a6f74d92449.zip |
zebra: move LSP updates into dataplane subsystem
Start performing LSP updates through the async dataplane
subsystem. This is plumbed through for linux/netlink.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_vrf.h')
-rw-r--r-- | zebra/zebra_vrf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zebra/zebra_vrf.h b/zebra/zebra_vrf.h index c28025403..2473299d1 100644 --- a/zebra/zebra_vrf.h +++ b/zebra/zebra_vrf.h @@ -137,12 +137,14 @@ struct zebra_vrf { */ enum vxlan_flood_control vxlan_flood_ctrl; - /* Route Installs */ + /* Install stats */ uint64_t installs; uint64_t removals; uint64_t installs_queued; uint64_t removals_queued; uint64_t neigh_updates; + uint64_t lsp_installs_queued; + uint64_t lsp_removals_queued; uint64_t lsp_installs; uint64_t lsp_removals; }; |