[PATCH] hash: remove return statement from function returning void
David Marchand
david.marchand at redhat.com
Thu Mar 14 16:58:54 CET 2024
Hello Tyler,
On Fri, Mar 8, 2024 at 10:20 PM Tyler Retzlaff
<roretzla at linux.microsoft.com> wrote:
>
> rte_thash_gfni_bulk and rte_thash_gfni_bulk_stub both return void.
> Remove superfluous return statement from rte_thash_gfni_bulk.
>
> Fixes: 944a03a5cfc1 ("hash: fix MSVC link on GFNI stubs")
> Cc: stephen at networkplumber.org
>
> Signed-off-by: Tyler Retzlaff <roretzla at linux.microsoft.com>
> ---
> lib/hash/rte_thash_gfni.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/hash/rte_thash_gfni.h b/lib/hash/rte_thash_gfni.h
> index edae2e8..132f375 100644
> --- a/lib/hash/rte_thash_gfni.h
> +++ b/lib/hash/rte_thash_gfni.h
> @@ -71,7 +71,7 @@
> rte_thash_gfni_bulk(const uint64_t *mtrx, int len, uint8_t *tuple[],
> uint32_t val[], uint32_t num)
> {
> - return rte_thash_gfni_bulk_stub(mtrx, len, tuple, val, num);
> + rte_thash_gfni_bulk_stub(mtrx, len, tuple, val, num);
> }
I am surprised the CI did not catch it.
I need to pass -pedantic when compiling with this header, but no code
does this in-tree.
How did you catch this issue?
--
David Marchand
More information about the dev
mailing list