osst_options.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.    The compile-time configurable defaults for the Linux SCSI tape driver.
  3.    Copyright 1995 Kai Makisara.
  4.    
  5.    Last modified: Wed Sep  2 21:24:07 1998 by root@home
  6.    
  7.    Changed (and renamed) for OnStream SCSI drives garloff@suse.de
  8.    2000-06-21
  9.    $Header: /home/cvsroot/Driver/osst_options.h,v 1.5 2001/01/07 22:19:15 riede Exp $
  10. */
  11. #ifndef _OSST_OPTIONS_H
  12. #define _OSST_OPTIONS_H
  13. /* The minimum limit for the number of SCSI tape devices is determined by
  14.    OSST_MAX_TAPES. If the number of tape devices and the "slack" defined by
  15.    OSST_EXTRA_DEVS exceeds OSST_MAX_TAPES, the large number is used. */
  16. #define OSST_MAX_TAPES 4
  17. /* If OSST_IN_FILE_POS is nonzero, the driver positions the tape after the
  18.    record been read by the user program even if the tape has moved further
  19.    because of buffered reads. Should be set to zero to support also drives
  20.    that can't space backwards over records. NOTE: The tape will be
  21.    spaced backwards over an "accidentally" crossed filemark in any case. */
  22. #define OSST_IN_FILE_POS 1
  23. /* The tape driver buffer size in kilobytes. */
  24. /* Don't change, as this is the HW blocksize */
  25. #define OSST_BUFFER_BLOCKS 32
  26. /* The number of kilobytes of data in the buffer that triggers an
  27.    asynchronous write in fixed block mode. See also OSST_ASYNC_WRITES
  28.    below. */
  29. #define OSST_WRITE_THRESHOLD_BLOCKS 32
  30. /* OSST_EOM_RESERVE defines the number of frames are kept in reserve for
  31.  *  * write error recovery when writing near end of medium. ENOSPC is returned
  32.  *   * when write() is called and the tape write position is within this number
  33.  *    * of blocks from the tape capacity. */
  34. #define OSST_EOM_RESERVE 300
  35. /* The maximum number of tape buffers the driver allocates. The number
  36.    is also constrained by the number of drives detected. Determines the
  37.    maximum number of concurrently active tape drives. */
  38. #define OSST_MAX_BUFFERS OSST_MAX_TAPES 
  39. /* Maximum number of scatter/gather segments */
  40. /* Fit one buffer in pages and add one for the AUX header */
  41. #define OSST_MAX_SG      (((OSST_BUFFER_BLOCKS*1024) / PAGE_SIZE) + 1)
  42. /* The number of scatter/gather segments to allocate at first try (must be
  43.    smaller or equal to the maximum). */
  44. #define OSST_FIRST_SG    ((OSST_BUFFER_BLOCKS*1024) / PAGE_SIZE)
  45. /* The size of the first scatter/gather segments (determines the maximum block
  46.    size for SCSI adapters not supporting scatter/gather). The default is set
  47.    to try to allocate the buffer as one chunk. */
  48. #define OSST_FIRST_ORDER  5
  49. /* The following lines define defaults for properties that can be set
  50.    separately for each drive using the MTSTOPTIONS ioctl. */
  51. /* If OSST_TWO_FM is non-zero, the driver writes two filemarks after a
  52.    file being written. Some drives can't handle two filemarks at the
  53.    end of data. */
  54. #define OSST_TWO_FM 0
  55. /* If OSST_BUFFER_WRITES is non-zero, writes in fixed block mode are
  56.    buffered until the driver buffer is full or asynchronous write is
  57.    triggered. */
  58. #define OSST_BUFFER_WRITES 1
  59. /* If OSST_ASYNC_WRITES is non-zero, the SCSI write command may be started
  60.    without waiting for it to finish. May cause problems in multiple
  61.    tape backups. */
  62. #define OSST_ASYNC_WRITES 1
  63. /* If OSST_READ_AHEAD is non-zero, blocks are read ahead in fixed block
  64.    mode. */
  65. #define OSST_READ_AHEAD 1
  66. /* If OSST_AUTO_LOCK is non-zero, the drive door is locked at the first
  67.    read or write command after the device is opened. The door is opened
  68.    when the device is closed. */
  69. #define OSST_AUTO_LOCK 0
  70. /* If OSST_FAST_MTEOM is non-zero, the MTEOM ioctl is done using the
  71.    direct SCSI command. The file number status is lost but this method
  72.    is fast with some drives. Otherwise MTEOM is done by spacing over
  73.    files and the file number status is retained. */
  74. #define OSST_FAST_MTEOM 0
  75. /* If OSST_SCSI2LOGICAL is nonzero, the logical block addresses are used for
  76.    MTIOCPOS and MTSEEK by default. Vendor addresses are used if OSST_SCSI2LOGICAL
  77.    is zero. */
  78. #define OSST_SCSI2LOGICAL 0
  79. /* If OSST_SYSV is non-zero, the tape behaves according to the SYS V semantics.
  80.    The default is BSD semantics. */
  81. #define OSST_SYSV 0
  82. #endif