Skip to content

Commit

Permalink
mlx5: DR, Fix missing comma in matcher builder dump line
Browse files Browse the repository at this point in the history
[ Upstream commit f50b33a ]

Add missing comma to matcher builder dump line.

Fixes: 6a1f3b4 ("mlx5: Add support for dr_matcher to the steering dump API")
Reviewed-by: Erez Shitrit <erezsh@nvidia.com>
Signed-off-by: Muhammad Sammar <muhammads@nvidia.com>
Signed-off-by: Yishai Hadas <yishaih@nvidia.com>
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
  • Loading branch information
Muhammad Sammar authored and nmorey committed Sep 5, 2022
1 parent bbf15f6 commit 393c7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/mlx5/dr_dbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ static int dr_dump_matcher_builder(FILE *f, struct dr_ste_build *builder,
{
int ret;

ret = fprintf(f, "%d,0x%" PRIx64 "%d,%d,0x%x\n",
ret = fprintf(f, "%d,0x%" PRIx64 ",%d,%d,0x%x\n",
DR_DUMP_REC_TYPE_MATCHER_BUILDER,
matcher_id,
index,
Expand Down

0 comments on commit 393c7b6

Please sign in to comment.