MTIO.4
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. .TH MTIO 4
  2. .SH NAME
  3. mtio - magnetic tape commands
  4. .SH SYNOPSIS
  5. .B "#include <sys/types.h>"
  6. .br
  7. .B "#include <sys/mtio.h>"
  8. .br
  9. .B "#include <sys/ioctl.h>"
  10. .SH DESCRIPTION
  11. .de SP
  12. .if t .sp 0.4
  13. .if n .sp
  14. ..
  15. The magnetic tape devices described in
  16. .BR sd (4)
  17. may be sent commands or queried for their status using the following ioctl
  18. calls:
  19. .PP
  20. .RS
  21. .BR ioctl ( fIfd ,
  22. .BR MTIOCTOP ,
  23. .RB & "struct mtop" )
  24. .br
  25. .BR ioctl ( fIfd ,
  26. .BR MTIOCGET ,
  27. .RB & "struct mtget" )
  28. .RE
  29. .PP
  30. The struct mtop, struct mtget and associated definitions are defined in
  31. <sys/mtio.h> as follows:
  32. .PP
  33. .nf
  34. /* Tape operations: ioctl(fd, MTIOCTOP, &struct mtop) */
  35. .ta +4n +7n +15n
  36. struct mtop {
  37. short mt_op; /* Operation (MTWEOF, etc.) */
  38. int mt_count; /* Repeat count. */
  39. };
  40. .ta +17n +5n
  41. #define MTWEOF 0 /* Write End-Of-File Marker */
  42. #define MTFSF 1 /* Forward Space File mark */
  43. #define MTBSF 2 /* Backward Space File mark */
  44. #define MTFSR 3 /* Forward Space Record */
  45. #define MTBSR 4 /* Backward Space Record */
  46. #define MTREW 5 /* Rewind tape */
  47. #define MTOFFL 6 /* Rewind and take Offline */
  48. #define MTNOP 7 /* No-Operation, set status only */
  49. #define MTRETEN 8 /* Retension (completely wind and rewind) */
  50. #define MTERASE 9 /* Erase the tape and rewind */
  51. #define MTEOM 10 /* Position at End-Of-Media */
  52. #define MTMODE 11 /* Select tape density */
  53. #define MTBLKZ 12 /* Select tape block size */
  54. /* Tape status: ioctl(fd, MTIOCGET, &struct mtget) */
  55. .ta +4n +7n +15n
  56. struct mtget {
  57. short mt_type; /* Type of tape device. */
  58. /* Device dependent "registers". */
  59. short mt_dsreg; /* Drive status register. */
  60. short mt_erreg; /* Error register. */
  61. /* Misc info. */
  62. off_t mt_resid; /* Residual count. */
  63. off_t mt_fileno; /* Current File Number. */
  64. off_t mt_blkno; /* Current Block Number within file. */
  65. off_t mt_blksize; /* Current block size. */
  66. };
  67. .fi
  68. .PP
  69. See
  70. .BR mt (1)
  71. for a detailed description on what each operation does.  The mt_type field
  72. is always zero, there is no use for it yet.  Mt_dsreg is 0 (OK), 1 (Error),
  73. or 2 (EOF encountered.)  Mt_erreg holds the SCSI sense key of the last
  74. operation.  Mt_blksize is the current tape block size in bytes, zero if the
  75. block size is variable.
  76. .PP
  77. Note that one can issue these commands on a file descriptor that is in use
  78. to read or write data, something that
  79. .B mt
  80. can't do.  So you can add eof markers in the middle of an output stream,
  81. or get the status of a device before a rewind-on-close tape rewinds.
  82. .PP
  83. The driver will automatically add an end of file marker to a tape that is
  84. written to if you execute a space command.  If you write eof markers
  85. yourself then the driver will not add one extra on close.
  86. .SH "SEE ALSO"
  87. .BR mt (1),
  88. .BR sd (4).
  89. .SH AUTHOR
  90. Kees J. Bot (kjb@cs.vu.nl)