⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 os_freebsd.h

📁 硬盘各项性能的测试,如温度容量版本健康度型号
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * os_freebsd.h * * Home page of code is: http://smartmontools.sourceforge.net * * Copyright (C) 2003-8 Eduard Martinescu <smartmontools-support@lists.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * You should have received a copy of the GNU General Public License * (for example COPYING); if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * This code was originally developed as a Senior Thesis by Michael Cornwell * at the Concurrent Systems Laboratory (now part of the Storage Systems * Research Center), Jack Baskin School of Engineering, University of * California, Santa Cruz. http://ssrc.soe.ucsc.edu/ * *//*- * Copyright (c) 2000 Michael Smith * Copyright (c) 2003 Paul Saab * Copyright (c) 2003 Vinod Kashyap * Copyright (c) 2000 BSDi * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *//* * Copyright (c) 2004-05 Applied Micro Circuits Corporation. * Copyright (c) 2004-05 Vinod Kashyap * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */#ifndef OS_FREEBSD_H_#define OS_FREEBSD_H_#define OS_FREEBSD_H_CVSID "$Id: os_freebsd.h,v 1.22 2008/03/04 22:09:47 ballen4705 Exp $\n"struct freebsd_dev_channel {  int   channel;                // the ATA channel to work with  int   device;                 // the device on the channel  int   atacommand;             // the ATA Command file descriptor (/dev/ata)  char* devname;                // the SCSI device name  int   unitnum;                // the SCSI unit number  int   scsicontrol;            // the SCSI control interface};#define FREEBSD_MAXDEV 64#define FREEBSD_FDOFFSET 16;#define MAX_NUM_DEV 26#ifdef  HAVE_SYS_TWEREG_H#include <sys/twereg.h>#else/** *  The following cut out of twereg.h * */#if __FreeBSD_version < 500040#define __packed __attribute__((__packed__))#endif#define TWE_MAX_SGL_LENGTH		62#define TWE_MAX_ATA_SGL_LENGTH		60#define TWE_OP_ATA_PASSTHROUGH		0x11/* scatter/gather list entry */typedef struct{    u_int32_t	address;    u_int32_t	length;} __packed TWE_SG_Entry;typedef struct {    u_int8_t	opcode:5;		/* TWE_OP_INITCONNECTION */    u_int8_t	res1:3;		    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	res2:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int16_t	message_credits;    u_int32_t	response_queue_pointer;} __packed TWE_Command_INITCONNECTION;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_READ/TWE_OP_WRITE */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int16_t	block_count;    u_int32_t	lba;    TWE_SG_Entry sgl[TWE_MAX_SGL_LENGTH];} __packed TWE_Command_IO;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_HOTSWAP */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int8_t	action;#define TWE_OP_HOTSWAP_REMOVE		0x00	/* remove assumed-degraded unit */#define TWE_OP_HOTSWAP_ADD_CBOD		0x01	/* add CBOD to empty port */#define TWE_OP_HOTSWAP_ADD_SPARE	0x02	/* add spare to empty port */    u_int8_t	aport;} __packed TWE_Command_HOTSWAP;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_SETATAFEATURE */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int8_t	feature;#define TWE_OP_SETATAFEATURE_WCE	0x02#define TWE_OP_SETATAFEATURE_DIS_WCE	0x82    u_int8_t	feature_mode;    u_int16_t	all_units;    u_int16_t	persistence;} __packed TWE_Command_SETATAFEATURE;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_CHECKSTATUS */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	res2:4;    u_int8_t	status;    u_int8_t	flags;    u_int16_t	target_status;		/* set low byte to target request's ID */} __packed TWE_Command_CHECKSTATUS;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_GETPARAM, TWE_OP_SETPARAM */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int16_t	param_count;    TWE_SG_Entry sgl[TWE_MAX_SGL_LENGTH];} __packed TWE_Command_PARAM;typedef struct{    u_int8_t	opcode:5;		/* TWE_OP_REBUILDUNIT */    u_int8_t	res1:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	src_unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;    u_int8_t	action:7;#define TWE_OP_REBUILDUNIT_NOP		0#define TWE_OP_REBUILDUNIT_STOP		2	/* stop all rebuilds */#define TWE_OP_REBUILDUNIT_START	4	/* start rebuild with lowest unit */#define TWE_OP_REBUILDUNIT_STARTUNIT	5	/* rebuild src_unit (not supported) */    u_int8_t	cs:1;				/* request state change on src_unit */    u_int8_t	logical_subunit;		/* for RAID10 rebuild of logical subunit */} __packed TWE_Command_REBUILDUNIT;typedef struct{    u_int8_t	opcode:5;    u_int8_t	sgl_offset:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit;    u_int8_t	status;    u_int8_t	flags;    u_int16_t	param;    u_int16_t	features;    u_int16_t	sector_count;    u_int16_t	sector_num;    u_int16_t	cylinder_lo;    u_int16_t	cylinder_hi;    u_int8_t	drive_head;    u_int8_t	command;    TWE_SG_Entry sgl[TWE_MAX_ATA_SGL_LENGTH];} __packed TWE_Command_ATA;typedef struct{    u_int8_t	opcode:5;    u_int8_t	sgl_offset:3;    u_int8_t	size;    u_int8_t	request_id;    u_int8_t	unit:4;    u_int8_t	host_id:4;    u_int8_t	status;    u_int8_t	flags;#define TWE_FLAGS_SUCCESS	0x00#define TWE_FLAGS_INFORMATIONAL	0x01#define TWE_FLAGS_WARNING	0x02#define TWE_FLAGS_FATAL		0x03#define TWE_FLAGS_PERCENTAGE	(1<<8)	/* bits 0-6 indicate completion percentage */    u_int16_t	count;			/* block count, parameter count, message credits */} __packed TWE_Command_Generic;/* command packet - must be TWE_ALIGNMENT aligned */typedef union{    TWE_Command_INITCONNECTION	initconnection;    TWE_Command_IO		io;    TWE_Command_PARAM		param;    TWE_Command_CHECKSTATUS	checkstatus;    TWE_Command_REBUILDUNIT	rebuildunit;    TWE_Command_SETATAFEATURE	setatafeature;    TWE_Command_ATA		ata;    TWE_Command_Generic		generic;    u_int8_t			pad[512];} TWE_Command;/* response queue entry */typedef union{    struct     {	u_int32_t	undefined_1:4;	u_int32_t	response_id:8;	u_int32_t	undefined_2:20;    } u;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -