Commit 0c10f7b7 authored by Joachim Fenkes's avatar Joachim Fenkes Committed by Roland Dreier

IB/ehca: Make internal_create/destroy_qp() static

They're only used in ehca_qp.c, so make them static to that file.
Signed-off-by: default avatarJoachim Fenkes <fenkes@de.ibm.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 51d2bfbd
...@@ -363,10 +363,11 @@ init_qp_queue1: ...@@ -363,10 +363,11 @@ init_qp_queue1:
* the value of the is_srq parameter. If init_attr and srq_init_attr share * the value of the is_srq parameter. If init_attr and srq_init_attr share
* fields, the field out of init_attr is used. * fields, the field out of init_attr is used.
*/ */
struct ehca_qp *internal_create_qp(struct ib_pd *pd, static struct ehca_qp *internal_create_qp(
struct ib_qp_init_attr *init_attr, struct ib_pd *pd,
struct ib_srq_init_attr *srq_init_attr, struct ib_qp_init_attr *init_attr,
struct ib_udata *udata, int is_srq) struct ib_srq_init_attr *srq_init_attr,
struct ib_udata *udata, int is_srq)
{ {
struct ehca_qp *my_qp; struct ehca_qp *my_qp;
struct ehca_pd *my_pd = container_of(pd, struct ehca_pd, ib_pd); struct ehca_pd *my_pd = container_of(pd, struct ehca_pd, ib_pd);
...@@ -752,8 +753,8 @@ struct ib_qp *ehca_create_qp(struct ib_pd *pd, ...@@ -752,8 +753,8 @@ struct ib_qp *ehca_create_qp(struct ib_pd *pd,
return IS_ERR(ret) ? (struct ib_qp *)ret : &ret->ib_qp; return IS_ERR(ret) ? (struct ib_qp *)ret : &ret->ib_qp;
} }
int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp, static int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp,
struct ib_uobject *uobject); struct ib_uobject *uobject);
struct ib_srq *ehca_create_srq(struct ib_pd *pd, struct ib_srq *ehca_create_srq(struct ib_pd *pd,
struct ib_srq_init_attr *srq_init_attr, struct ib_srq_init_attr *srq_init_attr,
...@@ -1669,8 +1670,8 @@ query_srq_exit1: ...@@ -1669,8 +1670,8 @@ query_srq_exit1:
return ret; return ret;
} }
int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp, static int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp,
struct ib_uobject *uobject) struct ib_uobject *uobject)
{ {
struct ehca_shca *shca = container_of(dev, struct ehca_shca, ib_device); struct ehca_shca *shca = container_of(dev, struct ehca_shca, ib_device);
struct ehca_pd *my_pd = container_of(my_qp->ib_qp.pd, struct ehca_pd, struct ehca_pd *my_pd = container_of(my_qp->ib_qp.pd, struct ehca_pd,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment