Fix ADISC completion incorrectly putting initiators on mapped list Symptom - An unmapped node (initiator) that goes away in a situation such as cable pull, comes back as a mapped node. Fix - On ADISC completion, put a list on the mapped list only if it is a FCP_TARGET. Signed-off-by: James Smart <James.Smart@xxxxxxxxxx> --- scsi-misc-2.6-20050620-jsmart/drivers/scsi/lpfc/lpfc_nportdisc.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff -puN drivers/scsi/lpfc/lpfc_nportdisc.c~adisc drivers/scsi/lpfc/lpfc_nportdisc.c --- scsi-misc-2.6-20050620/drivers/scsi/lpfc/lpfc_nportdisc.c~adisc 2005-06-25 09:42:42.000000000 -0400 +++ scsi-misc-2.6-20050620-jsmart/drivers/scsi/lpfc/lpfc_nportdisc.c 2005-06-25 09:42:42.000000000 -0400 @@ -950,8 +950,13 @@ lpfc_cmpl_adisc_adisc_issue(struct lpfc_ lpfc_unreg_rpi(phba, ndlp); return (ndlp->nlp_state); } - ndlp->nlp_state = NLP_STE_MAPPED_NODE; - lpfc_nlp_list(phba, ndlp, NLP_MAPPED_LIST); + if (ndlp->nlp_type & NLP_FCP_TARGET) { + ndlp->nlp_state = NLP_STE_MAPPED_NODE; + lpfc_nlp_list(phba, ndlp, NLP_MAPPED_LIST); + } else { + ndlp->nlp_state = NLP_STE_UNMAPPED_NODE; + lpfc_nlp_list(phba, ndlp, NLP_UNMAPPED_LIST); + } return (ndlp->nlp_state); } _ - : send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html