diff options
| author | Mark Stapp <mjs.ietf@gmail.com> | 2025-04-16 08:47:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-16 08:47:11 -0400 |
| commit | 21a32b010b821b22550d56a6218afdeb536271f8 (patch) | |
| tree | 763ae3aeaf9569b6bb8b1ba11989a05a727066b9 /zebra/zebra_dplane.c | |
| parent | 42d31854a1037400b1a8e117c058110e1faa5db2 (diff) | |
| parent | 7e8c18d0b0149f879487d46255f279f14b20e52a (diff) | |
Merge pull request #18579 from krishna-samy/krishna/dplane_fpm_read
zebra: change fpm_read to batch the messages
Diffstat (limited to 'zebra/zebra_dplane.c')
| -rw-r--r-- | zebra/zebra_dplane.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index 4344a8d79a..a6d43daa93 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -6590,6 +6590,14 @@ int dplane_provider_work_ready(void) } /* + * Enqueue a context list to zebra main. + */ +void dplane_provider_enqueue_ctx_list_to_zebra(struct dplane_ctx_list_head *batch_list) +{ + (zdplane_info.dg_results_cb)(batch_list); +} + +/* * Enqueue a context directly to zebra main. */ void dplane_provider_enqueue_to_zebra(struct zebra_dplane_ctx *ctx) |
