1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
/*
* defrag.h - include file for the Linux file system degragmenter.
* $Id: defrag.h,v 1.4 1997/08/17 14:02:31 linux Exp $
*
* Copyright (C) 1992, 1993 Stephen Tweedie (sct@dcs.ed.ac.uk)
*
* Copyright (C) 1992 Remy Card (card@masi.ibp.fr)
*
* Copyright (C) 1991 Linus Torvalds (torvalds@kruuna.helsinki.fi)
*
* This file may be redistributed under the terms of the GNU General
* Public License.
*
*/
#ifdef NODEBUG
#define debug 0
#define assert(a)
#else
extern int debug;
#include <assert.h>
#endif
#include "types.h"
#include <sys/param.h>
#ifdef EXTFS
#include "ext.h"
#endif
#ifdef MINIXFS
#include "minix.h"
#endif
#ifdef EXT2FS
#include "ext2.h"
#endif
#ifdef XIAFS
#include "xia.h"
#endif
#include "display.h"
/* Use inline assembler to generate efficient bit operators */
#ifndef __GNUC__
#error "needs gcc for the bitop-__asm__'s"
#endif
#define SYNC_PERIOD 500
extern char * program_name, * version, * CVSID, * fsck;
extern char * device_name;
extern int IN;
extern int verbose, show, show_version, badblocks, readonly;
extern int blocks_until_sync;
extern int die_on_io_error;
extern int io_errors;
extern int changed; /* flags if the filesystem has been changed */
/* We omit a lot of the declarations when compiling misc.c, since
misc.o is shared between extfs and minixfs versions, so we can't
give correct types for a lot of fs-dependent stuff. */
#ifndef MISC_C
extern Block bad_block_inode;
extern Block next_block_to_fill, first_zone;
extern unsigned int zones, block_size;
extern struct d_inode inode_buffer;
extern int current_inode;
extern char super_block_buffer[];
extern int inode_table_offset;
/* n2d_map and d2n_map contain the zone movement maps. Whenever a zone is
moved, these maps are updated to allow the current occupant of a zone
to be mapped to its original location, and the original location of any
zone data to be mapped to its current location.
When a zone was originally empty, the d2n_map will contain zero at
that location to reflect the fact that there was no original occupant
of that zone is not to be found. The n2d_map will also be zero for
blocks which do not currently hold any useful data and which may be
overwritten freely.
o2n_map contains the final translation from old to new disc
blocks, and is used to update inode block tables and indirection
blocks.
inode_map and fixed_map maintain flags recording which inodes are in
use, and which blocks are unmoveable respectively.
*/
extern unsigned char * inode_map;
extern Block *inode_average_map;
extern char *inode_priority_map;
extern int *inode_order_map;
extern Block *n2d_map, *d2n_map, *o2n_map;
/* Manipulate the inode map */
#ifdef EXT2FS
#define inode_in_use(x) (bit (inode_map, (x-1)))
#define mark_inode(x) (setbit (inode_map, (x-1)), changed = 1)
#define unmark_inode(x) (clrbit (inode_map, (x-1)), changed = 1)
#else /* EXT2FS */
/* MINIX and XIAFS do use broken bitmaps, the least significant bit
* is not used there.
*/
#define inode_in_use(x) (bit (inode_map, (x)))
#define mark_inode(x) (setbit (inode_map, (x)), changed = 1)
#define unmark_inode(x) (clrbit (inode_map, (x)), changed = 1)
#endif /* EXT2FS */
/* Manipulate the block translation maps */
#define n2d(x) (n2d_map[(x)-first_zone])
#define d2n(x) (d2n_map[(x)-first_zone])
#define o2n(x) (o2n_map[(x)-first_zone])
#define unmark_zone(x) (d2n(x) = 0, n2d(x) = 0, changed = 1)
#define zone_in_use(x) (n2d(x) != 0)
/* Manipulate the fixed block map */
extern char * fixed_map;
#define zone_is_fixed(x) (bit (fixed_map, (x) - first_zone))
#define mark_fixed(x) (setbit (fixed_map, (x) - first_zone))
/* Miscellaneous function declarations */
/* The inline bitop functions... */
typedef struct Buffer Buffer;
struct Buffer
{
BufferType btype : 1;
unsigned int in_use : 1;
unsigned int full : 1;
Buffer *next;
Block dest_zone;
unsigned char data[0];
};
extern int pool_size;
extern Buffer *pool;
extern int count_buffer_writes, count_buffer_reads;
extern int count_write_groups, count_read_groups;
extern int count_buffer_migrates, count_buffer_forces;
extern int count_buffer_read_aheads;
void read_buffer_data (Buffer *b);
void write_buffer_data_at (Buffer *b, Block dest);
void write_buffer_data (Buffer *b);
void init_buffer_tables (void);
void remap_disk_blocks (void);
int get_inode(int);
void put_inode();
void check_zone_nr (Block nr);
/* Read/write block currently at given address */
void read_current_block (Block nnr, char * addr);
void write_current_block (Block nnr, char * addr);
/* Read/write block originally at given address */
void read_old_block (Block onr, char *addr);
void write_old_block (Block onr, char *addr);
/* Prototypes for fs-specific portions */
void read_tables (void);
void write_tables (void);
void salvage_free_zones (void);
void init_zone_maps (void);
void init_inode_bitmap (void);
void show_reserved_blocks(void);
void show_super_stats(void);
int seek_to_inode(int);
#endif /* !MISC_C */
#if defined(MISC_C) && !defined(__OPTIMIZE__)
#define inline
#endif
#ifdef i386bogus
#define bitop(name,op) \
extern int name(char * addr,unsigned int nr) \
{ \
int __res; \
__asm__ __volatile__("bt" op "l %1,%2; adcl $0,%0" \
:"=g" (__res) \
:"r" (nr),"m" (*(addr)),"0" (0)); \
return __res; \
}
inline bitop(bit,"")
inline bitop(setbit,"s")
inline bitop(clrbit,"r")
#else /* ! i386 */
#define bitop(name,cmd) \
extern int name(char * addr,unsigned int nr) \
{ \
return (int)cmd ;\
}
/*
inline bitop(bit,"((FIELD)&(BIT))")
inline bitop(setbit,"((FIELD)!=(BIT))")
inline bitop(clrbit,"((FIELD)&=(~BIT))")
*/
#define bit(field,bit) isset(field,bit)
#endif /* ! i386 */
/* Now for the prototypes for misc.c */
void check_mount(char *device_name);
loff_t nlseek (int fd, loff_t offset, int whence);
ssize_t nread (int fd, __ptr_t buf, size_t nbytes);
ssize_t nwrite (int fd, __ptr_t buf, size_t nbytes);
/* Let gcc know that this doesn't return. */
void fatal_error () __attribute__((noreturn));
void usage () __attribute__((noreturn));
#define die(str) fatal_error("%s: " str "\n")
#define nomore() fatal_error("%s: cannot continue.\n")
extern void io_error(const char *message);
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
/*
* llseek.c:
*/
loff_t defrag_llseek (unsigned int fd, loff_t offset,
unsigned int origin);
extern __off_t __llseek __P ((int __fd, __off_t __offset, int __whence));
extern __off_t llseek __P ((int __fd, __off_t __offset, int __whence));
|