This is a note to let you know that I've just added the patch titled Target/iser: Gracefully reject T10-PI enabled connect request if not supported to the 3.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: target-iser-gracefully-reject-t10-pi-enabled-connect-request-if-not-supported.patch and it can be found in the queue-3.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 5f80ff8eccba50832dcc640ac89add4c7fced963 Mon Sep 17 00:00:00 2001 From: Sagi Grimberg <sagig@xxxxxxxxxxxx> Date: Tue, 20 May 2014 13:28:11 +0300 Subject: Target/iser: Gracefully reject T10-PI enabled connect request if not supported From: Sagi Grimberg <sagig@xxxxxxxxxxxx> commit 5f80ff8eccba50832dcc640ac89add4c7fced963 upstream. In case user chose to set T10-PI enable on the target while the IB device does not support it, gracefully reject the request. Reported-by: Slava Shwartsman <valyushash@xxxxxxxxx> Signed-off-by: Sagi Grimberg <sagig@xxxxxxxxxxxx> Signed-off-by: Nicholas Bellinger <nab@xxxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/infiniband/ulp/isert/ib_isert.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/infiniband/ulp/isert/ib_isert.c +++ b/drivers/infiniband/ulp/isert/ib_isert.c @@ -663,8 +663,9 @@ isert_connect_request(struct rdma_cm_id pi_support = np->tpg_np->tpg->tpg_attrib.t10_pi; if (pi_support && !device->pi_capable) { - pr_err("Protection information requested but not supported\n"); - ret = -EINVAL; + pr_err("Protection information requested but not supported, " + "rejecting connect request\n"); + ret = rdma_reject(cma_id, NULL, 0); goto out_mr; } Patches currently in stable-queue which might be from sagig@xxxxxxxxxxxx are queue-3.15/target-iser-fix-a-wrong-dereference-in-case-discovery-session-is-over-iser.patch queue-3.15/target-iser-fix-hangs-in-connection-teardown.patch queue-3.15/target-iscsi-fix-sendtargets-response-pdu-for-iser-transport.patch queue-3.15/target-iser-bail-from-accept_np-if-np_thread-is-trying-to-close.patch queue-3.15/libiscsi-iser-adjust-data_length-to-include-protection-information.patch queue-3.15/target-iser-wait-for-proper-cleanup-before-unloading.patch queue-3.15/target-sbc-loopback-adjust-command-data-length-in-case-pi-exists-on-the-wire.patch queue-3.15/target-iser-gracefully-reject-t10-pi-enabled-connect-request-if-not-supported.patch queue-3.15/scsi_cmnd-introduce-scsi_transfer_length-helper.patch queue-3.15/target-iser-improve-cm-events-handling.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html