summaryrefslogtreecommitdiff
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-07-20 15:47:42 -0400
committerDonald Sharp <sharpd@nvidia.com>2022-07-20 15:50:32 -0400
commitcb1991af8c3f09e28c90932cb36bd1d2c07375d6 (patch)
tree8afceae737eed0619bdd3c074676795efccbdb2a /zebra/zebra_rib.c
parentefa98761d28b79796c0df91f823b241106d5f7b6 (diff)
*: frr_with_mutex change to follow our standard
convert: frr_with_mutex(..) to: frr_with_mutex (..) To make all our code agree with what clang-format is going to produce Signed-off-by: Donald Sharp <sharpd@nvidia.com>
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);
}