diff options
author | Mark Stapp <mjs@voltanet.io> | 2018-09-10 21:36:30 +0200 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2018-11-21 16:38:08 +0100 |
commit | 68b375e05956cdd1ce935fd54939312b75e3a546 (patch) | |
tree | 1e3a0fc2a96e3acfa60a6a470112559669d3db5b /zebra/zebra_dplane.h | |
parent | zebra: add initial error handling to dplane loop (diff) | |
download | frr-68b375e05956cdd1ce935fd54939312b75e3a546.tar.xz frr-68b375e05956cdd1ce935fd54939312b75e3a546.zip |
zebra: revise dplane dequeue api
Change the dataplane context dequeue api used by zebra to make the
purpose a bit clearer.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_dplane.h')
-rw-r--r-- | zebra/zebra_dplane.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_dplane.h b/zebra/zebra_dplane.h index 60dfb07fe..2e64540d6 100644 --- a/zebra/zebra_dplane.h +++ b/zebra/zebra_dplane.h @@ -133,7 +133,7 @@ void dplane_ctx_list_append(struct dplane_ctx_q *to_list, struct dplane_ctx_q *from_list); /* Dequeue a context block from the head of caller's tailq */ -void dplane_ctx_dequeue(struct dplane_ctx_q *q, struct zebra_dplane_ctx **ctxp); +struct zebra_dplane_ctx *dplane_ctx_dequeue(struct dplane_ctx_q *q); /* * Accessors for information from the context object |