Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1642942 > unrolled thread

[PATCH] lpfc: fix build issue if NVME_FC_TARGET is not defined

Started byJames Smart <jsmart2021@gmail.com>
First post2017-05-17 06:00 +0200
Last post2017-05-18 02:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] lpfc: fix build issue if NVME_FC_TARGET is not defined James Smart <jsmart2021@gmail.com> - 2017-05-17 06:00 +0200
    Re: [PATCH] lpfc: fix build issue if NVME_FC_TARGET is not defined "Martin K. Petersen" <martin.petersen@oracle.com> - 2017-05-18 02:30 +0200

#1642942 — [PATCH] lpfc: fix build issue if NVME_FC_TARGET is not defined

FromJames Smart <jsmart2021@gmail.com>
Date2017-05-17 06:00 +0200
Subject[PATCH] lpfc: fix build issue if NVME_FC_TARGET is not defined
Message-ID<tHYhY-6iV-5@gated-at.bofh.it>
fix build issue if NVME_FC_TARGET is not defined. noop the code.
The code will never be invoked if target mode is not enabled.

Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
Signed-off-by: James Smart <james.smart@broadcom.com>
---
 drivers/scsi/lpfc/lpfc_nvmet.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/lpfc/lpfc_nvmet.c b/drivers/scsi/lpfc/lpfc_nvmet.c
index 312f54278bd4..f94294b77b7b 100644
--- a/drivers/scsi/lpfc/lpfc_nvmet.c
+++ b/drivers/scsi/lpfc/lpfc_nvmet.c
@@ -157,6 +157,7 @@ lpfc_nvmet_xmt_ls_rsp_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
 void
 lpfc_nvmet_ctxbuf_post(struct lpfc_hba *phba, struct lpfc_nvmet_ctxbuf *ctx_buf)
 {
+#if (IS_ENABLED(CONFIG_NVME_TARGET_FC))
 	struct lpfc_nvmet_rcv_ctx *ctxp = ctx_buf->context;
 	struct lpfc_nvmet_tgtport *tgtp;
 	struct fc_frame_header *fc_hdr;
@@ -260,6 +261,7 @@ lpfc_nvmet_ctxbuf_post(struct lpfc_hba *phba, struct lpfc_nvmet_ctxbuf *ctx_buf)
 		      &phba->sli4_hba.lpfc_nvmet_ctx_list);
 	phba->sli4_hba.nvmet_ctx_cnt++;
 	spin_unlock_irqrestore(&phba->sli4_hba.nvmet_io_lock, iflag);
+#endif
 }
 
 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
-- 
2.11.0

[toc] | [next] | [standalone]


#1643718

From"Martin K. Petersen" <martin.petersen@oracle.com>
Date2017-05-18 02:30 +0200
Message-ID<tIhui-1R3-3@gated-at.bofh.it>
In reply to#1642942
James,

> fix build issue if NVME_FC_TARGET is not defined. noop the code.
> The code will never be invoked if target mode is not enabled.

Applied to 4.12/scsi-fixes. Thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web