From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Smart Subject: [PATCH v2] lpfc: Tie in to new dev_loss_tmo interface in nvme transport Date: Fri, 3 Nov 2017 09:30:40 -0700 Message-ID: <20171103163040.28344-1-jsmart2021@gmail.com> Return-path: Received: from mail-qt0-f196.google.com ([209.85.216.196]:53638 "EHLO mail-qt0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751385AbdKCQas (ORCPT ); Fri, 3 Nov 2017 12:30:48 -0400 Received: by mail-qt0-f196.google.com with SMTP id n61so3886900qte.10 for ; Fri, 03 Nov 2017 09:30:48 -0700 (PDT) Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: linux-scsi@vger.kernel.org, linux-nvme@lists.infradead.org Cc: James Smart , James Smart This patch calls the new nvme transport routine for dev_loss_tmo whenever the SCSI fc transport calls the lldd to make a dynamic change to a remote ports dev_loss_tmo. Signed-off-by: James Smart --- This lpfc patch, as dependent upon the new nvme transport nvme_fc_set_remoteport_devloss() call, should enter via nvme-4.15 v2: Ensure nvme_fc is enabled for compilation --- drivers/scsi/lpfc/lpfc_attr.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c index c17677f494af..1191a92e2dbc 100644 --- a/drivers/scsi/lpfc/lpfc_attr.c +++ b/drivers/scsi/lpfc/lpfc_attr.c @@ -3246,6 +3246,9 @@ lpfc_update_rport_devloss_tmo(struct lpfc_vport *vport) continue; if (ndlp->rport) ndlp->rport->dev_loss_tmo = vport->cfg_devloss_tmo; + if (ndlp->nrport) + nvme_fc_set_remoteport_devloss(ndlp->nrport->remoteport, + vport->cfg_devloss_tmo); } spin_unlock_irq(shost->host_lock); } -- 2.13.1