home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / 3c589pat.zip / readme.txt < prev   
Text File  |  2000-10-29  |  2KB  |  60 lines

  1.  
  2. 3COM 3C589 PCMCIA NIC Driver Patches
  3. 29 Oct 2000
  4. Steven H. Levine
  5. steve53@earthlink.net
  6.  
  7.  
  8. These patches address two problems with the 3COM 3C589 drivers.
  9.  
  10. 1.  The 3COM 3C589 driver, elpc3.os2, traps on systems with clock rates over     
  11.     500 mHz.
  12.  
  13. 2.  The log extract tool, 3net_log.exe, will not work with the v1.8         
  14.     drivers.
  15.  
  16.  
  17. THE ELPC3.OS PATCH
  18.  
  19. Elpc3.os2 traps because it calculates a buffer size based on the number of 
  20. bytes that can be processed in a fixed time period.  On a faster CPU, more 
  21. bytes can be processed.  This byte count is the dividend of a divide 
  22. operation.  When this dividend becomes large enough, the divide instruction 
  23. fails with a divide overflow because the quotient no longer fits in a 16-bit 
  24. register.  The patch doubles the divisor and should avoid the trap for 
  25. systems with clock rates  up to 1 GHz.  Beyond this, the divisor will need to 
  26. be doubled again.
  27.  
  28. The patch is designed for the v1.8 driver:
  29.  
  30.  ELPC3.OS2 30,237 10-27-96
  31.  
  32. It has been reported that other 3COM drivers suffer the same failures on fast 
  33. systems.  I have not investiagated this, but it is likely that these failures 
  34. occur for the same reason and a similar patch will avoid the failure.
  35.  
  36.  
  37. THE 3NET_LOG.EXE PATCH
  38.  
  39. The 3c589 driver saves log messages internally.  The 3net_log utility 
  40. extracts the messages and writes them to the screen or to a file.  The 
  41. version of the utility delivered with the v1.8 drivers no long works because 
  42. the programmer(s) did not update the version number check to match the 
  43. driver version.  The patch modifies 3net_log.exe to check for a v1.8 driver.
  44.  
  45. The patch is built for:
  46.  
  47.  3NET_LOG.EXE  13,065 8-11-95
  48.  
  49.  
  50. The patches are supplied as .PAT files.  Apply the patches to a copy of the 
  51. programs using the OS/2 PATCH utility.
  52.  
  53.  
  54. *** USE AT YOUR OWN RISK ***
  55.  
  56. This program is provided AS IS without any warranty, expressed or implied, 
  57. including but not limited to fitness for a particular use. The user is 
  58. responsible for the results of correct or incorrect usage of this software.
  59.  
  60.