mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 02:20:52 +07:00
RDMA/qedr: Remove unsupported modify_port callback
There is no need to return always zero for function which is not
supported.
Fixes: ac1b36e55a
("qedr: Add support for user context verbs")
Link: https://lore.kernel.org/r/20191028155931.1114-5-kamalheib1@gmail.com
Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Reviewed-by: Jason Gunthorpe <jgg@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
parent
6135b71159
commit
ad0593ec89
@ -213,7 +213,6 @@ static const struct ib_device_ops qedr_dev_ops = {
|
|||||||
.map_mr_sg = qedr_map_mr_sg,
|
.map_mr_sg = qedr_map_mr_sg,
|
||||||
.mmap = qedr_mmap,
|
.mmap = qedr_mmap,
|
||||||
.mmap_free = qedr_mmap_free,
|
.mmap_free = qedr_mmap_free,
|
||||||
.modify_port = qedr_modify_port,
|
|
||||||
.modify_qp = qedr_modify_qp,
|
.modify_qp = qedr_modify_qp,
|
||||||
.modify_srq = qedr_modify_srq,
|
.modify_srq = qedr_modify_srq,
|
||||||
.poll_cq = qedr_poll_cq,
|
.poll_cq = qedr_poll_cq,
|
||||||
|
@ -256,12 +256,6 @@ int qedr_query_port(struct ib_device *ibdev, u8 port, struct ib_port_attr *attr)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int qedr_modify_port(struct ib_device *ibdev, u8 port, int mask,
|
|
||||||
struct ib_port_modify *props)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int qedr_alloc_ucontext(struct ib_ucontext *uctx, struct ib_udata *udata)
|
int qedr_alloc_ucontext(struct ib_ucontext *uctx, struct ib_udata *udata)
|
||||||
{
|
{
|
||||||
struct ib_device *ibdev = uctx->device;
|
struct ib_device *ibdev = uctx->device;
|
||||||
|
@ -35,8 +35,6 @@
|
|||||||
int qedr_query_device(struct ib_device *ibdev,
|
int qedr_query_device(struct ib_device *ibdev,
|
||||||
struct ib_device_attr *attr, struct ib_udata *udata);
|
struct ib_device_attr *attr, struct ib_udata *udata);
|
||||||
int qedr_query_port(struct ib_device *, u8 port, struct ib_port_attr *props);
|
int qedr_query_port(struct ib_device *, u8 port, struct ib_port_attr *props);
|
||||||
int qedr_modify_port(struct ib_device *, u8 port, int mask,
|
|
||||||
struct ib_port_modify *props);
|
|
||||||
|
|
||||||
int qedr_iw_query_gid(struct ib_device *ibdev, u8 port,
|
int qedr_iw_query_gid(struct ib_device *ibdev, u8 port,
|
||||||
int index, union ib_gid *gid);
|
int index, union ib_gid *gid);
|
||||||
|
Loading…
Reference in New Issue
Block a user