From 1843f692de4d0a653f68e8cd72404c717075ea76 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Thu, 7 Jul 2011 19:52:45 +0000 Subject: [PATCH] Cleanup git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3661 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 135ceec28..f34c498e4 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]);