T.R | Title | User | Personal Name | Date | Lines |
---|
204.1 | | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Thu Jun 13 1996 17:46 | 12 |
204.2 | | COOKIE::BOONE | | Mon Jun 17 1996 11:27 | 2 |
204.3 | Do we really want to do this? | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Mon Jun 17 1996 17:49 | 32 |
204.4 | | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Mon Jun 17 1996 18:51 | 17 |
204.5 | | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Mon Jun 17 1996 19:24 | 5 |
204.6 | | COOKIE::BOONE | | Tue Jun 18 1996 08:18 | 1 |
204.7 | | COOKIE::BOONE | | Tue Jun 18 1996 12:21 | 8 |
204.8 | Concern.. | BABAGI::TRAN | Straight <Left> Hitter.. | Tue Jul 02 1996 07:59 | 10 |
204.9 | | SSDEVO::ROLLOW | Dr. File System's Home for Wayward Inodes. | Tue Jul 02 1996 09:27 | 16 |
204.10 | Nice to have.. | BABAGI::TRAN | Straight <Left> Hitter.. | Tue Jul 02 1996 13:06 | 7 |
204.11 | Problem ! | COOKIE::BOONE | | Tue Aug 13 1996 09:49 | 13 |
204.12 | 2 minute default. | COOKIE::MRU | | Fri Aug 16 1996 16:58 | 27 |
204.13 | Lower priority; need fine tuned timing loop. | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Mon Jan 13 1997 15:20 | 6 |
204.14 | | NABETH::alan | Dr. File System's Home for Wayward Inodes. | Wed Feb 12 1997 18:13 | 22 |
| The MRU_UNLOAD_DELAY loop has been changed to be an elapsed
time loop instead of counter loop. This makes the same
value of MRU_UNLOAD_DELAY behave pretty much the same on
both the TL810 and TL820. If the current time should change
out from under the wait, a counter loop is used as a fail
safe. The counter used is:
if( cartridge_unavailable > mru_unload_delay )
break ;
This approximates the old behavior.
The routine used to get the value of MRU_UNLOAD_DELAY has
a 20 second default, which I guess was a work-around for
the massive extra delay we were seeing on the TL820. THis
needs to be fixed. Since we're translating time logical
in at least two places (and perhaps three), a bit of common
code could be used here:
mrd_get_delay(char *logical, int default) ;
Tomorrow...
|
204.15 | Close | SSDEVO::ROLLOW | Dr. File System's Home for Wayward Inodes. | Thu Feb 13 1997 23:46 | 5 |
| Checked and double checked. Merging the two get_*_delay()
routines doesn't work, since each keeps a static copy of
the value, to saving having to do the translate logical
over and over. I did change them accept the default value
as an argument to make changing it easier.
|