aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLeon Romanovsky <leonro@mellanox.com>2019-06-12 15:27:41 +0300
committerDoug Ledford <dledford@redhat.com>2019-06-20 14:37:02 -0400
commita49b1dc7ae447d7085360cd587fc1c8b9ec6c871 (patch)
treeff57360fc555422af427cd1e4d1061e30fb0db75 /include
parentRDMA/hns: Fix bug when wqe num is larger than 16K (diff)
downloadlinux-dev-a49b1dc7ae447d7085360cd587fc1c8b9ec6c871.tar.xz
linux-dev-a49b1dc7ae447d7085360cd587fc1c8b9ec6c871.zip
RDMA: Convert destroy_wq to be void
All callers of destroy WQ are always success and there is no need to check their return value, so convert destroy_wq to be void. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/rdma/ib_verbs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index 6f09fcc21d7a..805148a12660 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -2509,7 +2509,7 @@ struct ib_device_ops {
struct ib_wq *(*create_wq)(struct ib_pd *pd,
struct ib_wq_init_attr *init_attr,
struct ib_udata *udata);
- int (*destroy_wq)(struct ib_wq *wq, struct ib_udata *udata);
+ void (*destroy_wq)(struct ib_wq *wq, struct ib_udata *udata);
int (*modify_wq)(struct ib_wq *wq, struct ib_wq_attr *attr,
u32 wq_attr_mask, struct ib_udata *udata);
struct ib_rwq_ind_table *(*create_rwq_ind_table)(