home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / jgd / freeware_readme.txt < prev    next >
Text File  |  1995-11-15  |  2KB  |  2 lines

  1. DJGdriver, SOFTWARE, intercept driver to retry errors on any VMS diskDJGdriver is an intercept driver which is used to retry errors on anyCVMS disk. It is currently set up to build correctly on VAX systems.GIt works by arranging, at start-IO time, that the disk start-io controlCgoes into it first, and a counter is initialized. Then when the I/OBcompletes, if it was unsuccessful, it is retried up to some numberGof times (255 by default). If it was OK, the I/O is completed normally.CThis means that a disk drive that gets some errors can be forced toAhave them retried invisibly to the rest of VMS. Now and then someBdisk errors will in fact occur which can be retried and which willDnot appear all the time. This gives you a way to increase (sometimes2markedly) the reliability of the disk abstraction.    To build:
  2. $ macro jgctl$ macro jgdriver#$ link jgctl+sys$system:sys.stb/sel4$ link jgdriver+sys$system:sys.stb/sel+sys$input/optbase=0$ !'$ copy jgdriver.exe sys$common:[sysexe]$$ copy jgctl.exe sys$common:[sysexe]$$ copy jgctl.cld sys$common:[sysexe]$ set command sys$system:jgctl,$ sysgen connect jga0:/noada/driver=jgdriver,$ sysgen connect jga1:/noada/driver=jgdriver'... etc....load one JG unit per disk...$jgctl/verify jga0: dka0:$jgctl/verify jga1: dka200:7...and so on. Use a different JGAn: unit for each disk.-(To deassign this facility use a command like$jgctl/deas jga0: dka0:)?You can do this at any time, and just continue to use the disksBas normal. There will be no observed effects except that transient?errors may disappear, and that fatal errors will take longer to<appear. In normal operation you don't see any change, but it<gives you a safety net. This was concocted for optical disksAoriginally where the author was seeing error log entries labelled@"recoverable ECC error" and the errors were not being retried in/dkdriver. It corrected the problem completely. >The driver is also a decent example of a VMS intercept driver.Glenn C. Everhart