扫一扫
关注微信公众号

Solaris中调整scsi参数的方法
2008-09-11   51CTO

先看看 /usr/include/sys/scsi/autoconf.h 中有关 SCSI_OPTION 的参数 :
#define SCSI_OPTIONS_DR 0x8 /* Global disconnect/reconnect */ 
#define SCSI_OPTIONS_LINK 0x10 /* Global linked commands */
#define SCSI_OPTIONS_SYNC 0x20 /* Global synchronous xfer capability *
#define SCSI_OPTIONS_PARITY 0x40 /* Global parity support */
#define SCSI_OPTIONS_TAG 0x80 /* " tagged command support */
#define SCSI_OPTIONS_FAST 0x100 /* " FAST scsi support */
#define SCSI_OPTIONS_WIDE 0x200 /* " WIDE scsi support */
#define SCSI_OPTIONS_FAST20 0x400 /* " FAST20 scsi support */
看到了吧, 如果你想 enable 某个 function, 那就把它 add 起来(注意是HEX !), 然后在 /etc/system 中加一行 :
set scsi_options = 0x(你的数值)。

热词搜索:

上一篇:Solaris平台下的硬盘增设方法小结
下一篇:Sun开源CTO谈ZFS和Solaris 10网络协议堆栈

分享到: 收藏