1219820Sjefflibibverbs: add raw ethernet QP type IBV_QPT_RAW_ETH=7
2219820Sjeff
3219820SjeffThe patch enables usage of L2 raw ethernet QP type for user-space 
4219820Sjeffapplications.
5219820Sjeff
6219820SjeffMiroslaw Walukiewicz
7219820Sjeff
8219820Sjeff
9219820SjeffSigned-off-by: Mirek Walukiewicz <miroslaw.walukiewicz@intel.com>
10219820Sjeff---
11219820Sjeff include/infiniband/verbs.h |    3 ++-
12219820Sjeff 1 files changed, 2 insertions(+), 1 deletions(-)
13219820Sjeff
14219820Sjeff
15219820Sjeffdiff --git a/include/infiniband/verbs.h b/include/infiniband/verbs.h
16219820Sjeffindex fe9ab62..a340ffb 100644
17219820Sjeff--- a/include/infiniband/verbs.h
18219820Sjeff+++ b/include/infiniband/verbs.h
19219820Sjeff@@ -397,7 +397,8 @@ enum ibv_qp_type {
20219820Sjeff 	IBV_QPT_RC = 2,
21219820Sjeff 	IBV_QPT_UC,
22219820Sjeff 	IBV_QPT_UD,
23219820Sjeff-	IBV_QPT_XRC
24219820Sjeff+	IBV_QPT_XRC,
25219820Sjeff+	IBV_QPT_RAW_ETH = 8
26219820Sjeff };
27219820Sjeff 
28219820Sjeff struct ibv_qp_cap {
29