aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriel Ehrenberg <aehrenberg@nvidia.com>2026-06-15 08:15:54 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2026-07-20 20:26:09 +0000
commit7b0e4a73ebb6c475be2933a40485dea97c8df2af (patch)
treed772b046ba678ef7d06a4f595a45a82e96ee3797
parente611f58ae3618d1aa8b1e2738a11e2334faa432f (diff)
mlx5: pass the full EQE to the DEVX event notifier
(cherry picked from commit 0e9bbbdcbea8edc6ad259a9428234b494014bc4e)
-rw-r--r--sys/dev/mlx5/mlx5_core/mlx5_eq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mlx5/mlx5_core/mlx5_eq.c b/sys/dev/mlx5/mlx5_core/mlx5_eq.c
index 5279d71e3e86..1458c0859610 100644
--- a/sys/dev/mlx5/mlx5_core/mlx5_eq.c
+++ b/sys/dev/mlx5/mlx5_core/mlx5_eq.c
@@ -271,7 +271,7 @@ static int mlx5_eq_int(struct mlx5_core_dev *dev, struct mlx5_eq *eq)
devx_cb = smp_load_acquire(&dev->priv.eq_table.cb);
if (devx_cb != NULL)
devx_consumed =
- devx_cb(dev, eqe->type, &eqe->data);
+ devx_cb(dev, eqe->type, eqe);
rcu_read_unlock();
}