aboutsummaryrefslogtreecommitdiffstats
path: root/include/rdma/iw_cm.h
diff options
context:
space:
mode:
authorSteve Wise <swise@opengridcomputing.com>2019-02-01 12:44:32 -0800
committerJason Gunthorpe <jgg@mellanox.com>2019-02-08 16:18:06 -0700
commit926ba19b3574f6a80823a42484877ed65e91da9c (patch)
tree62798bac4b4a26598664887b88efc5336ff4eb80 /include/rdma/iw_cm.h
parentRDMA/cma: listening device cm_ids should inherit tos (diff)
downloadlinux-dev-926ba19b3574f6a80823a42484877ed65e91da9c.tar.xz
linux-dev-926ba19b3574f6a80823a42484877ed65e91da9c.zip
RDMA/iwcm: add tos_set bool to iw_cm struct
This allows drivers to know the tos was actively set by the application. Signed-off-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'include/rdma/iw_cm.h')
-rw-r--r--include/rdma/iw_cm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rdma/iw_cm.h b/include/rdma/iw_cm.h
index 48512abd3162..0e1f02815643 100644
--- a/include/rdma/iw_cm.h
+++ b/include/rdma/iw_cm.h
@@ -94,7 +94,8 @@ struct iw_cm_id {
void (*add_ref)(struct iw_cm_id *);
void (*rem_ref)(struct iw_cm_id *);
u8 tos;
- bool mapped;
+ bool tos_set:1;
+ bool mapped:1;
};
struct iw_cm_conn_param {