Merge branches 'hfi1' and 'sge-limit' into k.o/for-4.8-2

This commit is contained in:
Doug Ledford
2016-08-03 21:51:20 -04:00
7 changed files with 35 additions and 23 deletions

View File

@@ -1428,6 +1428,10 @@ struct ib_srq {
} ext;
};
/*
* @max_write_sge: Maximum SGE elements per RDMA WRITE request.
* @max_read_sge: Maximum SGE elements per RDMA READ request.
*/
struct ib_qp {
struct ib_device *device;
struct ib_pd *pd;
@@ -1449,6 +1453,8 @@ struct ib_qp {
void (*event_handler)(struct ib_event *, void *);
void *qp_context;
u32 qp_num;
u32 max_write_sge;
u32 max_read_sge;
enum ib_qp_type qp_type;
};