Skip to content

Commit

Permalink
RDS: Convert to ib_alloc_mr
Browse files Browse the repository at this point in the history
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
  • Loading branch information
Sagi Grimberg authored and Doug Ledford committed Aug 30, 2015
1 parent 9ac0750 commit fc27995
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions net/rds/iw_rdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -667,11 +667,12 @@ static int rds_iw_init_fastreg(struct rds_iw_mr_pool *pool,
struct ib_mr *mr;
int err;

mr = ib_alloc_fast_reg_mr(rds_iwdev->pd, pool->max_message_size);
mr = ib_alloc_mr(rds_iwdev->pd, IB_MR_TYPE_MEM_REG,
pool->max_message_size);
if (IS_ERR(mr)) {
err = PTR_ERR(mr);

printk(KERN_WARNING "RDS/IW: ib_alloc_fast_reg_mr failed (err=%d)\n", err);
printk(KERN_WARNING "RDS/IW: ib_alloc_mr failed (err=%d)\n", err);
return err;
}

Expand Down
5 changes: 3 additions & 2 deletions net/rds/iw_send.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,10 @@ void rds_iw_send_init_ring(struct rds_iw_connection *ic)
sge->length = sizeof(struct rds_header);
sge->lkey = 0;

send->s_mr = ib_alloc_fast_reg_mr(ic->i_pd, fastreg_message_size);
send->s_mr = ib_alloc_mr(ic->i_pd, IB_MR_TYPE_MEM_REG,
fastreg_message_size);
if (IS_ERR(send->s_mr)) {
printk(KERN_WARNING "RDS/IW: ib_alloc_fast_reg_mr failed\n");
printk(KERN_WARNING "RDS/IW: ib_alloc_mr failed\n");
break;
}

Expand Down

0 comments on commit fc27995

Please sign in to comment.