IB/iser: Enable iser when FMRs are not supported
Reuse the "SG unaligned for FMR" driver flow to make the initiator functional when running over driver instance which doesn't support FMRs, such as a mlx4 virtual function. Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com> Signed-off-by: Alex Tabachnik <alext@mellanox.com> Signed-off-by: Roland Dreier <roland@purestorage.com>
此提交包含在:
@@ -242,10 +242,14 @@ static int iser_create_ib_conn_res(struct iser_conn *ib_conn)
|
||||
IB_ACCESS_REMOTE_READ);
|
||||
|
||||
ib_conn->fmr_pool = ib_create_fmr_pool(device->pd, ¶ms);
|
||||
if (IS_ERR(ib_conn->fmr_pool)) {
|
||||
ret = PTR_ERR(ib_conn->fmr_pool);
|
||||
ret = PTR_ERR(ib_conn->fmr_pool);
|
||||
if (IS_ERR(ib_conn->fmr_pool) && ret != -ENOSYS) {
|
||||
ib_conn->fmr_pool = NULL;
|
||||
goto out_err;
|
||||
} else if (ret == -ENOSYS) {
|
||||
ib_conn->fmr_pool = NULL;
|
||||
iser_warn("FMRs are not supported, using unaligned mode\n");
|
||||
ret = 0;
|
||||
}
|
||||
|
||||
memset(&init_attr, 0, sizeof init_attr);
|
||||
|
新增問題並參考
封鎖使用者