Author: mav
Date: Wed Jun 27 11:07:01 2012
New Revision: 237639
URL: http://svn.freebsd.org/changeset/base/237639

Log:
  MFC r237401:
  Make cam_periph_hold() behavior consistent: drop taken reference and
  return ENXIO if periph was invalidated while we were waiting for it.

Modified:
  stable/9/sys/cam/cam_periph.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/cam/cam_periph.c
==============================================================================
--- stable/9/sys/cam/cam_periph.c       Wed Jun 27 11:04:04 2012        
(r237638)
+++ stable/9/sys/cam/cam_periph.c       Wed Jun 27 11:07:01 2012        
(r237639)
@@ -440,6 +440,10 @@ cam_periph_hold(struct cam_periph *perip
                        cam_periph_release_locked(periph);
                        return (error);
                }
+               if (periph->flags & CAM_PERIPH_INVALID) {
+                       cam_periph_release_locked(periph);
+                       return (ENXIO);
+               }
        }
 
        periph->flags |= CAM_PERIPH_LOCKED;
_______________________________________________
svn-src-stable-9@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "svn-src-stable-9-unsubscr...@freebsd.org"

Reply via email to