From: <vl...@us...> - 2011-07-07 19:58:16
|
Revision: 3663 http://scst.svn.sourceforge.net/scst/?rev=3663&view=rev Author: vlnb Date: 2011-07-07 19:58:11 +0000 (Thu, 07 Jul 2011) Log Message: ----------- Let's print initiator and target names for not found LUNs to simplify diagnostics Modified Paths: -------------- trunk/scst/src/scst_targ.c Modified: trunk/scst/src/scst_targ.c =================================================================== --- trunk/scst/src/scst_targ.c 2011-07-07 19:56:26 UTC (rev 3662) +++ trunk/scst/src/scst_targ.c 2011-07-07 19:58:11 UTC (rev 3663) @@ -3850,8 +3850,9 @@ if (res != 0) { TRACE(TRACE_MINOR, "tgt_dev for LUN %lld not found, command to " - "unexisting LU?", - (long long unsigned int)cmd->lun); + "unexisting LU (initiator %s, target %s)?", + (long long unsigned int)cmd->lun, + cmd->sess->initiator_name, cmd->tgt->tgt_name); scst_put(cmd->cpu_cmd_counter); } } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |