diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-11 21:30:57 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-31 15:20:46 +0100 |
commit | ea45a4e7db86b29d8cf1ec0adc82ef92e602e7fd (patch) | |
tree | b9f5e8ceed42dc626d2a9d7758efaa864740e052 /zebra/zebra_router.h | |
parent | zebra: Move ribq from zebrad to zrouter (diff) | |
download | frr-ea45a4e7db86b29d8cf1ec0adc82ef92e602e7fd.tar.xz frr-ea45a4e7db86b29d8cf1ec0adc82ef92e602e7fd.zip |
zebra: Move the mq data structure to zrouter
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_router.h')
-rw-r--r-- | zebra/zebra_router.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h index 7f3a1a3e0..b4daeea24 100644 --- a/zebra/zebra_router.h +++ b/zebra/zebra_router.h @@ -78,6 +78,9 @@ struct zebra_router { #define ZEBRA_RIB_PROCESS_HOLD_TIME 10 #define ZEBRA_RIB_PROCESS_RETRY_TIME 1 struct work_queue *ribq; + + /* Meta Queue Information */ + struct meta_queue *mq; }; extern struct zebra_router zrouter; |