From a7ff034c24daeae29251178ef89b68c5f7b691aa Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Thu, 7 Jul 2011 21:29:31 +0000 Subject: [PATCH] Merged revisions 3661 via svnmerge from https://vlnb@scst.svn.sourceforge.net/svnroot/scst/trunk ........ r3661 | vlnb | 2011-07-07 15:52:45 -0400 (Thu, 07 Jul 2011) | 3 lines Cleanup ........ git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/2.1.0.x@3669 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- qla2x00t/qla2x00-target/qla2x00t.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/qla2x00t/qla2x00-target/qla2x00t.c b/qla2x00t/qla2x00-target/qla2x00t.c index d76def414..3e8165f4c 100644 --- a/qla2x00t/qla2x00-target/qla2x00t.c +++ b/qla2x00t/qla2x00-target/qla2x00t.c @@ -412,7 +412,13 @@ static void q24_atio_pkt_all_vps(scsi_qla_host_t *ha, atio7_entry_t *atio) { scsi_qla_host_t *host = q2t_find_host_by_d_id(ha, atio->fcp_hdr.d_id); if (unlikely(NULL == host)) { - PRINT_ERROR("qla2x00t(%ld): Received ATIO_TYPE7 " + /* + * It might happen, because there is a small gap between + * requesting the DPC thread to update loop and actual + * update. It is harmless and on the next retry should + * work well. + */ + PRINT_WARNING("qla2x00t(%ld): Received ATIO_TYPE7 " "with unknown d_id %x:%x:%x", ha->instance, atio->fcp_hdr.d_id[0], atio->fcp_hdr.d_id[1], atio->fcp_hdr.d_id[2]);