Author: sephe
Date: Tue Jun 21 05:02:03 2016
New Revision: 302042
URL: https://svnweb.freebsd.org/changeset/base/302042

Log:
  MFC 298040
  
      hyperv/stor: Use xpt_done_direct() upon I/O completion
  
      Reviewed by:        mav
      MFC after:  1 week
      Sponsored by:       Microsoft OSTC
      Differential Revision:      https://reviews.freebsd.org/D5955

Modified:
  stable/10/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
==============================================================================
--- stable/10/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c   Tue Jun 21 
04:51:55 2016        (r302041)
+++ stable/10/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c   Tue Jun 21 
05:02:03 2016        (r302042)
@@ -2133,8 +2133,9 @@ storvsc_io_done(struct hv_storvsc_reques
                reqp->softc->hs_frozen = 0;
        }
        storvsc_free_request(sc, reqp);
-       xpt_done(ccb);
        mtx_unlock(&sc->hs_lock);
+
+       xpt_done_direct(ccb);
 }
 
 /**
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to