3c359.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. 3COM PCI TOKEN LINK VELOCITY XL TOKEN RING CARDS README
  2. Release 0.9.0 - Release   
  3. Jul 17th 2000 Mike Phillips 
  4. 1.2.0 - Final
  5. Feb 17th 2002 Mike Phillips 
  6. Updated for submission to the 2.4.x kernel.
  7. Thanks:
  8. Terry Murphy from 3Com for tech docs and support,
  9. Adam D. Ligas for testing the driver.
  10.  
  11. Note:
  12. This driver will NOT work with the 3C339 Token Ring cards, you need
  13. to use the tms380 driver instead.
  14. Options:
  15. The driver accepts three options: ringspeed, pkt_buf_sz and message_level.
  16. These options can be specified differently for each card found. 
  17. ringspeed:  Has one of three settings 0 (default), 4 or 16.  0 will 
  18. make the card autosense the ringspeed and join at the appropriate speed, 
  19. this will be the default option for most people.  4 or 16 allow you to 
  20. explicitly force the card to operate at a certain speed.  The card will fail 
  21. if you try to insert it at the wrong speed. (Although some hubs will allow 
  22. this so be *very* careful).  The main purpose for explicitly setting the ring
  23. speed is for when the card is first on the ring.  In autosense mode, if the card
  24. cannot detect any active monitors on the ring it will open at the same speed as
  25. its last opening. This can be hazardous if this speed does not match the speed
  26. you want the ring to operate at.  
  27. pkt_buf_sz:  This is this initial receive buffer allocation size.  This will
  28. default to 4096 if no value is entered. You may increase performance of the 
  29. driver by setting this to a value larger than the network packet size, although
  30. the driver now re-sizes buffers based on MTU settings as well. 
  31. message_level: Controls level of messages created by the driver. Defaults to 0:
  32. which only displays start-up and critical messages.  Presently any non-zero 
  33. value will display all soft messages as well.  NB This does not turn 
  34. debuging messages on, that must be done by modified the source code.
  35. Variable MTU size:
  36. The driver can handle a MTU size upto either 4500 or 18000 depending upon 
  37. ring speed.  The driver also changes the size of the receive buffers as part
  38. of the mtu re-sizing, so if you set mtu = 18000, you will need to be able
  39. to allocate 16 * (sk_buff with 18000 buffer size) call it 18500 bytes per ring 
  40. position = 296,000 bytes of memory space, plus of course anything 
  41. necessary for the tx sk_buff's.  Remember this is per card, so if you are
  42. building routers, gateway's etc, you could start to use a lot of memory
  43. real fast.
  44. 2/17/02 Mike Phillips