diff options
author | Mike Marciniszyn <mike.marciniszyn@intel.com> | 2016-07-02 02:02:07 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-08-02 22:47:44 +0300 |
commit | afcf8f7647780aa147ad68be48d223cd50311b9a (patch) | |
tree | 1cff6e2d03b496394f340b83b7a7692316147e37 /include/rdma/rdma_vt.h | |
parent | 71e68e3db8008d89d4eb25483ea68d752015e9d8 (diff) | |
download | linux-afcf8f7647780aa147ad68be48d223cd50311b9a.tar.xz |
IB/rdmavt: Add data structures and routines for table driven post send
Add flexibility for driver dependent operations in post send
because different drivers will have differing post send
operation support.
This includes data structure definitions to support a table
driven scheme along with the necessary validation routine
using the new table.
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Jianxin Xiong <jianxin.xiong@intel.com>
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma/rdma_vt.h')
-rw-r--r-- | include/rdma/rdma_vt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/rdma/rdma_vt.h b/include/rdma/rdma_vt.h index 9c9a27d42aaa..3a70dc047314 100644 --- a/include/rdma/rdma_vt.h +++ b/include/rdma/rdma_vt.h @@ -351,6 +351,9 @@ struct rvt_dev_info { /* Driver specific properties */ struct rvt_driver_params dparms; + /* post send table */ + const struct rvt_operation_params *post_parms; + struct rvt_mregion __rcu *dma_mr; struct rvt_lkey_table lkey_table; |