X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=dump%2Fdump.h;h=80d4971d5d2dc5d36735e4955fba2782907b5ee8;hb=51b01afee9aa77a4ac099dcf7ce74d67deaf2d3e;hp=d47b0714877a22129fd5b77eab423d141513d7a7;hpb=ec387a1267f4cac7625cd5b6d1c1f080d39085b3;p=dump.git diff --git a/dump/dump.h b/dump/dump.h index d47b071..80d4971 100644 --- a/dump/dump.h +++ b/dump/dump.h @@ -2,8 +2,9 @@ * Ported to Linux's Second Extended File System as part of the * dump and restore backup suit * Remy Card , 1994-1997 - * Stelian Pop , 1999 + * Stelian Pop , 1999-2000 * + * $Id: dump.h,v 1.14 2000/11/10 11:48:31 stelian Exp $ */ /*- @@ -37,8 +38,6 @@ * 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. - * - * $Id: dump.h,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ #define MAXINOPB (MAXBSIZE / sizeof(struct dinode)) @@ -65,12 +64,14 @@ char *dumpinomap; /* map of files to be dumped */ * All calculations done in 0.1" units! */ char *disk; /* name of the disk file */ -char *tape; /* name of the tape file */ +char tape[MAXPATHLEN]; /* name of the tape file */ +char *tapeprefix; /* prefix of the tape file */ char *dumpdates; /* name of the file containing dump date information*/ -char *temp; /* name of the file for doing rewrite of dumpdates */ char lastlevel; /* dump level of previous dump */ char level; /* dump level of this dump */ int uflag; /* update flag */ +int Mflag; /* multi-volume flag */ +char *eot_script; /* end of volume script fiag */ int diskfd; /* disk file descriptor */ int tapefd; /* tape file descriptor */ int pipeout; /* true => output to standard output */ @@ -143,7 +144,7 @@ int alloctape __P((void)); void close_rewind __P((void)); void dumpblock __P((daddr_t blkno, int size)); void startnewtape __P((int top)); -void trewind __P((void)); +time_t trewind __P((void)); void writerec __P((const void *dp, int isspcl)); void Exit __P((int status)); @@ -187,16 +188,13 @@ struct fstab *fstabsearch __P((const char *key)); /* search fs_file and fs_spec struct fstab *fstabsearchdir __P((const char *key, char *dir)); /* search fs_file and fs_spec */ #endif -#ifndef NAME_MAX -#define NAME_MAX 255 -#endif - /* * The contents of the file _PATH_DUMPDATES is maintained both on * a linked list, and then (eventually) arrayified. */ struct dumpdates { - char dd_name[NAME_MAX+3]; + char dd_name[MAXPATHLEN+3]; + struct fstab *dd_fstab; char dd_level; time_t dd_ddate; }; @@ -230,6 +228,8 @@ extern int errno; #ifdef __linux__ #define DUMP_CURRENT_REV 1 + +int dump_fs_open(const char *disk, ext2_filsys *fs); #endif #ifndef __linux__ @@ -254,3 +254,7 @@ extern void exit(); extern off_t lseek(); extern const char *strerror(); #endif + + /* 04-Feb-00 ILC */ +#define IEXCLUDE_MAXNUM 256 /* max size of inode exclude list */ +