summaryrefslogtreecommitdiffstats
path: root/zebra/zserv.h
diff options
context:
space:
mode:
authorvivek <vivek@cumulusnetworks.com>2016-04-16 04:19:37 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-09-23 15:30:56 +0200
commit40c7bdb0c9ba746d1f1bdfe1cb4d03aa5f407661 (patch)
treedeeff1f385d86818d5f85258074960cdd2827508 /zebra/zserv.h
parentQuagga: Fix alignment in netlink messages in some cases (diff)
downloadfrr-40c7bdb0c9ba746d1f1bdfe1cb4d03aa5f407661.tar.xz
frr-40c7bdb0c9ba746d1f1bdfe1cb4d03aa5f407661.zip
Quagga: Install label forwarding entries for statically configured LSPs
Install the statically configured LSPs into the FIB (kernel). This is done using the new attributes and definitions for MPLS in the kernel - RTA_VIA, RTA_NEWDST and AF_MPLS. Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com> Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com> Ticket: CM-4804 Reviewed By: CCR-3088 Testing Done: Manual in SE-1
Diffstat (limited to '')
-rw-r--r--zebra/zserv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h
index 3667f5b2b..ce243dd6a 100644
--- a/zebra/zserv.h
+++ b/zebra/zserv.h
@@ -130,6 +130,9 @@ struct zebra_t
/* rib work queue */
struct work_queue *ribq;
struct meta_queue *mq;
+
+ /* LSP work queue */
+ struct work_queue *lsp_process_q;
};
extern struct zebra_t zebrad;