Date: Mon, 6 Mar 2017 06:28:00 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r314742 - stable/11/sys/dev/isp Message-ID: <201703060628.v266S0q3095464@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mav Date: Mon Mar 6 06:27:59 2017 New Revision: 314742 URL: https://svnweb.freebsd.org/changeset/base/314742 Log: MFC r314203: Fix missing xpt_done() for ATIO/INOT on missing LUN. Modified: stable/11/sys/dev/isp/isp_freebsd.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/dev/isp/isp_freebsd.c ============================================================================== --- stable/11/sys/dev/isp/isp_freebsd.c Mon Mar 6 06:27:15 2017 (r314741) +++ stable/11/sys/dev/isp/isp_freebsd.c Mon Mar 6 06:27:59 2017 (r314742) @@ -3428,9 +3428,10 @@ isp_action(struct cam_sim *sim, union cc else str = "XPT_ACCEPT_TARGET_IO"; ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, - "%s: [0x%x] no state pointer found for %s\n", + "%s: no state pointer found for %s\n", __func__, str); ccb->ccb_h.status = CAM_DEV_NOT_THERE; + xpt_done(ccb); break; } ccb->ccb_h.spriv_field0 = 0;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703060628.v266S0q3095464>