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

📄 sd.h

📁 GNU Mach 微内核源代码, 基于美国卡内基美隆大学的 Mach 研究项目
💻 H
字号:
/* *	sd.h Copyright (C) 1992 Drew Eckhardt  *	SCSI disk driver header file by *		Drew Eckhardt  * *	<drew@colorado.edu> * *	 Modified by Eric Youngdale eric@aib.com to *	 add scatter-gather, multiple outstanding request, and other *	 enhancements. */#ifndef _SD_H#define _SD_H/*    $Header: /cvsroot/hurd/gnumach/linux/src/drivers/scsi/Attic/sd.h,v 1.1 1999/04/26 05:55:03 tb Exp $*/#ifndef _SCSI_H#include "scsi.h"#endif#ifndef _GENDISK_H#include <linux/genhd.h>#endifextern struct hd_struct * sd;typedef struct scsi_disk {    unsigned capacity;		    /* size in blocks */    unsigned sector_size;	    /* size in bytes */    Scsi_Device	 *device;	        unsigned char ready;	    /* flag ready for FLOPTICAL */    unsigned char write_prot;	    /* flag write_protect for rmvable dev */    unsigned char sector_bit_size;  /* sector_size = 2 to the  bit size power */    unsigned char sector_bit_shift; /* power of 2 sectors per FS block */    unsigned ten:1;		    /* support ten byte read / write */    unsigned remap:1;		    /* support remapping  */    unsigned has_part_table:1;	    /* has partition table */} Scsi_Disk;extern Scsi_Disk * rscsi_disks;extern int revalidate_scsidisk(kdev_t dev, int maxusage);#endif/* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically * adjust the settings for this buffer only.  This must remain at the end * of the file. * --------------------------------------------------------------------------- * Local variables: * c-indent-level: 4 * c-brace-imaginary-offset: 0 * c-brace-offset: -4 * c-argdecl-indent: 4 * c-label-offset: -4 * c-continued-statement-offset: 4 * c-continued-brace-offset: 0 * indent-tabs-mode: nil * tab-width: 8 * End: */

⌨️ 快捷键说明

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