mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
ipath,qib: Expose max_sge_rd correctly
Applications must not assume that max_sge and max_sge_rd are the same, Hence expose max_sge_rd correctly as well. Signed-off-by: Steve Wise <swise@opengridcomputing.com> Acked-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
18ebd40773
commit
aaae91f4f0
@ -1575,6 +1575,7 @@ static int qib_query_device(struct ib_device *ibdev, struct ib_device_attr *prop
|
||||
props->max_qp = ib_qib_max_qps;
|
||||
props->max_qp_wr = ib_qib_max_qp_wrs;
|
||||
props->max_sge = ib_qib_max_sges;
|
||||
props->max_sge_rd = ib_qib_max_sges;
|
||||
props->max_cq = ib_qib_max_cqs;
|
||||
props->max_ah = ib_qib_max_ahs;
|
||||
props->max_cqe = ib_qib_max_cqes;
|
||||
|
@ -1521,6 +1521,7 @@ static int ipath_query_device(struct ib_device *ibdev, struct ib_device_attr *pr
|
||||
props->max_qp = ib_ipath_max_qps;
|
||||
props->max_qp_wr = ib_ipath_max_qp_wrs;
|
||||
props->max_sge = ib_ipath_max_sges;
|
||||
props->max_sge_rd = ib_ipath_max_sges;
|
||||
props->max_cq = ib_ipath_max_cqs;
|
||||
props->max_ah = ib_ipath_max_ahs;
|
||||
props->max_cqe = ib_ipath_max_cqes;
|
||||
|
Loading…
Reference in New Issue
Block a user