mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
RDS/IW: Remove dead code
In iWARP code, node_type will always be RNIC Signed-off-by: Andy Grover <andy.grover@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
404bb72a56
commit
ed9e352a35
1 changed files with 4 additions and 9 deletions
13
net/rds/iw.c
13
net/rds/iw.c
|
@ -89,15 +89,10 @@ void rds_iw_add_one(struct ib_device *device)
|
|||
goto free_dev;
|
||||
|
||||
if (!rds_iwdev->dma_local_lkey) {
|
||||
if (device->node_type != RDMA_NODE_RNIC) {
|
||||
rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
|
||||
IB_ACCESS_LOCAL_WRITE);
|
||||
} else {
|
||||
rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
|
||||
IB_ACCESS_REMOTE_READ |
|
||||
IB_ACCESS_REMOTE_WRITE |
|
||||
IB_ACCESS_LOCAL_WRITE);
|
||||
}
|
||||
rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
|
||||
IB_ACCESS_REMOTE_READ |
|
||||
IB_ACCESS_REMOTE_WRITE |
|
||||
IB_ACCESS_LOCAL_WRITE);
|
||||
if (IS_ERR(rds_iwdev->mr))
|
||||
goto err_pd;
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue