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

📄 ftape-bsm.h

📁 arm平台上的uclinux系统全部源代码
💻 H
字号:
#ifndef _FTAPE_BSM_H#define _FTAPE_BSM_H/* * Copyright (C) 1994-1995 Bas Laarhoven. 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. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING.  If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * $Source: /usr/local/cvsroot/AplioTRIO/linux/drivers/char/ftape/ftape-bsm.h,v $ $Author: vadim $ * $Revision: 1.1.1.1 $ $Date: 1999/11/15 13:41:57 $ $State: Exp $ * *      This file contains definitions for the bad sector map handling *      routines for the QIC-117 floppy-tape driver for Linux. */#define EMPTY_SEGMENT           (0xffffffff)#define FAKE_SEGMENT            (0xfffffffe)/*  failed sector log size (only used if format code != 4). */#define FAILED_SECTOR_LOG_SIZE  (2 * SECTOR_SIZE - 256)/*  maximum (format code 4) bad sector map size (bytes). */#define BAD_SECTOR_MAP_SIZE     (29 * SECTOR_SIZE - 256)/* *      ftape-io.c defined global vars. */extern int bad_sector_map_changed;/* *      ftape-io.c defined global functions. */extern void update_bad_sector_map(byte * buffer);extern void store_bad_sector_map(byte * buffer);extern void extract_bad_sector_map(byte * buffer);extern unsigned long get_bad_sector_entry(int segment_id);extern void put_bad_sector_entry(int segment_id, unsigned long mask);extern void add_segment_to_bad_sector_map(unsigned segment);extern void clear_bad_sector_map(int count);extern byte *find_end_of_bsm_list(byte * ptr, byte * limit);extern void ftape_init_bsm(void);#endif

⌨️ 快捷键说明

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