From: Moni Shoua Date: Thu, 8 Nov 2018 19:10:11 +0000 (+0200) Subject: net/mlx5: Enumerate page fault types X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c99fefea2cc907c98e7f39b3571bb697c8d42106;p=linux.git net/mlx5: Enumerate page fault types Give meaningful names to type of WQE page faults. Signed-off-by: Moni Shoua Signed-off-by: Leon Romanovsky --- diff --git a/include/linux/mlx5/device.h b/include/linux/mlx5/device.h index b4c0457fbebd9..e326524bafccf 100644 --- a/include/linux/mlx5/device.h +++ b/include/linux/mlx5/device.h @@ -212,6 +212,13 @@ enum { MLX5_PFAULT_SUBTYPE_RDMA = 1, }; +enum wqe_page_fault_type { + MLX5_WQE_PF_TYPE_RMP = 0, + MLX5_WQE_PF_TYPE_REQ_SEND_OR_WRITE = 1, + MLX5_WQE_PF_TYPE_RESP = 2, + MLX5_WQE_PF_TYPE_REQ_READ_OR_ATOMIC = 3, +}; + enum { MLX5_PERM_LOCAL_READ = 1 << 2, MLX5_PERM_LOCAL_WRITE = 1 << 3,