From: Mark Stapp Date: Wed, 4 Dec 2019 19:54:38 +0000 (-0500) Subject: zebra: capture dplane plugin flags X-Git-Tag: base_7.3~112^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=932dbb4deb7dc7b49dc6c0381659450c2548e6ca;p=matthieu%2Ffrr.git zebra: capture dplane plugin flags The flags can be important - like "threaded" - so we need to actually capture them when plugins are registered. Signed-off-by: Mark Stapp --- diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index bc4f51f70f..ca72ea5227 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -2814,6 +2814,7 @@ int dplane_provider_register(const char *name, TAILQ_INIT(&(p->dp_ctx_in_q)); TAILQ_INIT(&(p->dp_ctx_out_q)); + p->dp_flags = flags; p->dp_priority = prio; p->dp_fp = fp; p->dp_start = start_fp;