mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-15 12:55:03 +08:00
0cee8a5c42
Update copyright of files in preparation for release of resize2fs. Also removed the (obsolete) beta-test check that had been in the code, as well as the old spec files used to package the separate distribution of resize2fs. Makefile.in: No longer build resize2fs.static, since there's no real point in it any more. Modified Files: ChangeLog Makefile.in extent.c main.c resize2fs.8.in resize2fs.c resize2fs.h sim_progress.c test_extent.c Removed Files: e2fsprogs-1.12.spec pq.gif resize2fs.spec version.h
129 lines
2.9 KiB
C
129 lines
2.9 KiB
C
/*
|
|
* resize2fs.h --- ext2 resizer header file
|
|
*
|
|
* Copyright (C) 1997, 1998 by Theodore Ts'o and
|
|
* PowerQuest, Inc.
|
|
*
|
|
* Copyright (C) 1999, 2000 by Theosore Ts'o
|
|
*
|
|
* %Begin-Header%
|
|
* This file may be redistributed under the terms of the GNU Public
|
|
* License.
|
|
* %End-Header%
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TIME_H
|
|
#include <sys/time.h>
|
|
#endif
|
|
#if HAVE_ERRNO_H
|
|
#include <errno.h>
|
|
#endif
|
|
|
|
#if EXT2_FLAT_INCLUDES
|
|
#include "ext2_fs.h"
|
|
#include "ext2fs.h"
|
|
#else
|
|
#include <linux/ext2_fs.h>
|
|
#include "ext2fs/ext2fs.h"
|
|
#endif
|
|
|
|
|
|
/*
|
|
* For the extent map
|
|
*/
|
|
typedef struct _ext2_extent *ext2_extent;
|
|
|
|
/*
|
|
* For the simple progress meter
|
|
*/
|
|
typedef struct ext2_sim_progress *ext2_sim_progmeter;
|
|
|
|
/*
|
|
* Flags for the resizer; most are debugging flags only
|
|
*/
|
|
#define RESIZE_DEBUG_IO 0x0001
|
|
#define RESIZE_DEBUG_BMOVE 0x0002
|
|
#define RESIZE_DEBUG_INODEMAP 0x0004
|
|
#define RESIZE_DEBUG_ITABLEMOVE 0x0008
|
|
|
|
#define RESIZE_PERCENT_COMPLETE 0x0100
|
|
#define RESIZE_VERBOSE 0x0200
|
|
|
|
/*
|
|
* The core state structure for the ext2 resizer
|
|
*/
|
|
typedef struct ext2_resize_struct *ext2_resize_t;
|
|
|
|
struct ext2_resize_struct {
|
|
ext2_filsys old_fs;
|
|
ext2_filsys new_fs;
|
|
ext2fs_block_bitmap reserve_blocks;
|
|
ext2fs_block_bitmap move_blocks;
|
|
ext2_extent bmap;
|
|
ext2_extent imap;
|
|
int needed_blocks;
|
|
int flags;
|
|
char *itable_buf;
|
|
|
|
/*
|
|
* For the block allocator
|
|
*/
|
|
blk_t new_blk;
|
|
int alloc_state;
|
|
|
|
/*
|
|
* For the progress meter
|
|
*/
|
|
errcode_t (*progress)(ext2_resize_t rfs, int pass,
|
|
unsigned long cur,
|
|
unsigned long max);
|
|
void *prog_data;
|
|
};
|
|
|
|
/*
|
|
* Progress pass numbers...
|
|
*/
|
|
#define E2_RSZ_EXTEND_ITABLE_PASS 1
|
|
#define E2_RSZ_BLOCK_RELOC_PASS 2
|
|
#define E2_RSZ_INODE_SCAN_PASS 3
|
|
#define E2_RSZ_INODE_REF_UPD_PASS 4
|
|
#define E2_RSZ_MOVE_ITABLE_PASS 5
|
|
|
|
|
|
/* prototypes */
|
|
extern errcode_t resize_fs(ext2_filsys fs, blk_t new_size, int flags,
|
|
errcode_t (*progress)(ext2_resize_t rfs,
|
|
int pass, unsigned long cur,
|
|
unsigned long max));
|
|
|
|
/* extent.c */
|
|
extern errcode_t ext2fs_create_extent_table(ext2_extent *ret_extent,
|
|
int size);
|
|
extern void ext2fs_free_extent_table(ext2_extent extent);
|
|
extern errcode_t ext2fs_add_extent_entry(ext2_extent extent,
|
|
__u32 old_loc, __u32 new_loc);
|
|
extern __u32 ext2fs_extent_translate(ext2_extent extent, __u32 old_loc);
|
|
extern void ext2fs_extent_dump(ext2_extent extent, FILE *out);
|
|
extern errcode_t ext2fs_iterate_extent(ext2_extent extent, __u32 *old_loc,
|
|
__u32 *new_loc, int *size);
|
|
|
|
/* sim_progress.c */
|
|
extern errcode_t ext2fs_progress_init(ext2_sim_progmeter *ret_prog,
|
|
const char *label,
|
|
int labelwidth, int barwidth,
|
|
__u32 maxdone, int flags);
|
|
extern void ext2fs_progress_update(ext2_sim_progmeter prog,
|
|
__u32 current);
|
|
extern void ext2fs_progress_close(ext2_sim_progmeter prog);
|
|
|
|
|