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

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

Diff for /src/sys/dev/scsipi/st.c between version 1.154 and 1.155

version 1.154, 2002/05/03 20:41:17 version 1.155, 2002/05/05 15:16:31
Line 2092  st_interpret_sense(xs)
Line 2092  st_interpret_sense(xs)
   
         if (key == SKEY_NOT_READY && st->asc == 0x4 && st->ascq == 0x1) {          if (key == SKEY_NOT_READY && st->asc == 0x4 && st->ascq == 0x1) {
                 /* Not Ready, Logical Unit Is in Process Of Becoming Ready */                  /* Not Ready, Logical Unit Is in Process Of Becoming Ready */
                 scsipi_periph_freeze(periph, 1);                  if (!callout_active(&periph->periph_callout))
                           scsipi_periph_freeze(periph, 1);
                 callout_reset(&periph->periph_callout,                  callout_reset(&periph->periph_callout,
                     hz, scsipi_periph_timed_thaw, periph);                      hz, scsipi_periph_timed_thaw, periph);
                 return (ERESTART);                  return (ERESTART);

Legend:
Removed from v.1.154  
changed lines
  Added in v.1.155

CVSweb <webmaster@jp.NetBSD.org>