net/mlx5: fix hash list entry assert
authorSuanming Mou <suanmingm@nvidia.com>
Fri, 6 Nov 2020 03:02:21 +0000 (11:02 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 13 Nov 2020 18:43:25 +0000 (19:43 +0100)
The entry variable assert in the mlx5_hlist_register() function is not
correct. Remove the invalid entry variable.

Fixes: e69a59227db0 ("net/mlx5: support concurrent access for hash list")

Signed-off-by: Suanming Mou <suanmingm@nvidia.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
drivers/net/mlx5/mlx5_utils.c

index 13590dd..9889437 100644 (file)
@@ -132,7 +132,7 @@ mlx5_hlist_register(struct mlx5_hlist *h, uint64_t key, void *ctx)
        struct mlx5_hlist_entry *entry;
        uint32_t prev_gen_cnt = 0;
 
-       MLX5_ASSERT(h && entry);
+       MLX5_ASSERT(h);
        /* Use write lock directly for write-most list. */
        if (!h->write_most) {
                prev_gen_cnt = __atomic_load_n(&h->gen_cnt, __ATOMIC_ACQUIRE);