mirror of https://gitee.com/openkylin/linux.git
RDMA/qedr: Mark three functions as static
mark qedr_get_state_from_ibqp(), __qedr_alloc_mr() and __qedr_post_send() as static since they are only used in the same file. Signed-off-by: Ram Amrani <Ram.Amrani@cavium.com> Signed-off-by: Ariel Elior <Ariel.Elior@cavium.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
933e6dcaa0
commit
27a4b1a6d6
|
@ -1600,7 +1600,7 @@ struct ib_qp *qedr_create_qp(struct ib_pd *ibpd,
|
|||
return ERR_PTR(-EFAULT);
|
||||
}
|
||||
|
||||
enum ib_qp_state qedr_get_ibqp_state(enum qed_roce_qp_state qp_state)
|
||||
static enum ib_qp_state qedr_get_ibqp_state(enum qed_roce_qp_state qp_state)
|
||||
{
|
||||
switch (qp_state) {
|
||||
case QED_ROCE_QP_STATE_RESET:
|
||||
|
@ -1621,7 +1621,8 @@ enum ib_qp_state qedr_get_ibqp_state(enum qed_roce_qp_state qp_state)
|
|||
return IB_QPS_ERR;
|
||||
}
|
||||
|
||||
enum qed_roce_qp_state qedr_get_state_from_ibqp(enum ib_qp_state qp_state)
|
||||
static enum qed_roce_qp_state qedr_get_state_from_ibqp(
|
||||
enum ib_qp_state qp_state)
|
||||
{
|
||||
switch (qp_state) {
|
||||
case IB_QPS_RESET:
|
||||
|
@ -2310,7 +2311,8 @@ int qedr_dereg_mr(struct ib_mr *ib_mr)
|
|||
return rc;
|
||||
}
|
||||
|
||||
struct qedr_mr *__qedr_alloc_mr(struct ib_pd *ibpd, int max_page_list_len)
|
||||
static struct qedr_mr *__qedr_alloc_mr(struct ib_pd *ibpd,
|
||||
int max_page_list_len)
|
||||
{
|
||||
struct qedr_pd *pd = get_qedr_pd(ibpd);
|
||||
struct qedr_dev *dev = get_qedr_dev(ibpd->device);
|
||||
|
@ -2712,7 +2714,7 @@ static int qedr_prepare_reg(struct qedr_qp *qp,
|
|||
return 0;
|
||||
}
|
||||
|
||||
enum ib_wc_opcode qedr_ib_to_wc_opcode(enum ib_wr_opcode opcode)
|
||||
static enum ib_wc_opcode qedr_ib_to_wc_opcode(enum ib_wr_opcode opcode)
|
||||
{
|
||||
switch (opcode) {
|
||||
case IB_WR_RDMA_WRITE:
|
||||
|
@ -2737,7 +2739,7 @@ enum ib_wc_opcode qedr_ib_to_wc_opcode(enum ib_wr_opcode opcode)
|
|||
}
|
||||
}
|
||||
|
||||
inline bool qedr_can_post_send(struct qedr_qp *qp, struct ib_send_wr *wr)
|
||||
static inline bool qedr_can_post_send(struct qedr_qp *qp, struct ib_send_wr *wr)
|
||||
{
|
||||
int wq_is_full, err_wr, pbl_is_full;
|
||||
struct qedr_dev *dev = qp->dev;
|
||||
|
@ -2774,7 +2776,7 @@ inline bool qedr_can_post_send(struct qedr_qp *qp, struct ib_send_wr *wr)
|
|||
return true;
|
||||
}
|
||||
|
||||
int __qedr_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
|
||||
static int __qedr_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
|
||||
struct ib_send_wr **bad_wr)
|
||||
{
|
||||
struct qedr_dev *dev = get_qedr_dev(ibqp->device);
|
||||
|
|
Loading…
Reference in New Issue