git: 7b0e4a73ebb6 - stable/15 - mlx5: pass the full EQE to the DEVX event notifier

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Mon, 20 Jul 2026 20:53:37 UTC
The branch stable/15 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=7b0e4a73ebb6c475be2933a40485dea97c8df2af

commit 7b0e4a73ebb6c475be2933a40485dea97c8df2af
Author:     Ariel Ehrenberg <aehrenberg@nvidia.com>
AuthorDate: 2026-06-15 08:15:54 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-07-20 20:26:09 +0000

    mlx5: pass the full EQE to the DEVX event notifier
    
    (cherry picked from commit 0e9bbbdcbea8edc6ad259a9428234b494014bc4e)
---
 sys/dev/mlx5/mlx5_core/mlx5_eq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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();
 		}