summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authormobash-rasool <mobash.rasool@gmail.com>2022-07-21 19:10:41 +0530
committerGitHub <noreply@github.com>2022-07-21 19:10:41 +0530
commitcb6c39645fae5211bd15b43a1b7879fb4c4b308c (patch)
tree4a4cc74652f66cb92f24f0fab80fa9319a2ba15f /zebra/zebra_rib.c
parent87af90a765b697a944e4309a4b89c0a44b958435 (diff)
parentcb1991af8c3f09e28c90932cb36bd1d2c07375d6 (diff)
Merge pull request #11654 from donaldsharp/fixup_macros
*: frr_with_mutex change to follow our standard
Diffstat (limited to 'zebra/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index d92a4c2365..d0babbb9e4 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -4242,7 +4242,7 @@ static void rib_process_dplane_results(struct thread *thread)
TAILQ_INIT(&ctxlist);
/* Take lock controlling queue of results */
- frr_with_mutex(&dplane_mutex) {
+ frr_with_mutex (&dplane_mutex) {
/* Dequeue list of context structs */
dplane_ctx_list_append(&ctxlist, &rib_dplane_q);
}
@@ -4401,7 +4401,7 @@ static void rib_process_dplane_results(struct thread *thread)
static int rib_dplane_results(struct dplane_ctx_q *ctxlist)
{
/* Take lock controlling queue of results */
- frr_with_mutex(&dplane_mutex) {
+ frr_with_mutex (&dplane_mutex) {
/* Enqueue context blocks */
dplane_ctx_list_append(&rib_dplane_q, ctxlist);
}