[BACK]Return to ccd.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/ccd.c between version 1.63 and 1.64

version 1.63, 1999/08/11 02:41:02 version 1.64, 1999/11/03 16:04:03
Line 632  ccdstrategy(bp)
Line 632  ccdstrategy(bp)
         s = splbio();          s = splbio();
         ccdstart(cs, bp);          ccdstart(cs, bp);
         splx(s);          splx(s);
         if (bp->b_flags & B_ERROR)  
                 goto done;  
         return;          return;
 done:  done:
         biodone(bp);          biodone(bp);
Line 685  ccdstart(cs, bp)
Line 683  ccdstart(cs, bp)
                         /* Notify the upper layer we are out of memory. */                          /* Notify the upper layer we are out of memory. */
                         bp->b_error = ENOMEM;                          bp->b_error = ENOMEM;
                         bp->b_flags |= B_ERROR;                          bp->b_flags |= B_ERROR;
                           biodone(bp);
                         disk_unbusy(&cs->sc_dkdev, 0);                          disk_unbusy(&cs->sc_dkdev, 0);
                         return;                          return;
                 }                  }

Legend:
Removed from v.1.63  
changed lines
  Added in v.1.64

CVSweb <webmaster@jp.NetBSD.org>