-$Id: CHANGES,v 1.98 2000/12/21 11:14:52 stelian Exp $
+$Id: CHANGES,v 1.99 2000/12/21 15:01:53 stelian Exp $
Changes between versions 0.4b20 and 0.4b21 (released ?????????????????)
=======================================================================
fully testing it... (of course, if this patch will break
anything, he is to blame for :-)).
-7. Make dump and restore LFS aware. Dump can dump a filesystem
+7. Made dump and restore LFS aware. Dump can dump a filesystem
containing large files, generate a large file on output and
restore can restore them. This feature is not enabled by
default, use --enable-largefile option of configure to enable
and to Theodore T'so <tytso@valinux.com> for his always
useful thoughts.
+8. Made dump ask upon a tape write error if it should rewrite
+ the current volume (assume this is a bad tape) or if it should
+ assume an end-of-tape condition (useful for tape drives which
+ behaves badly at the end of the tape). Thanks to Andreas
+ Dilger <adilger@turbolinux.com> for the suggestion.
+
Changes between versions 0.4b19 and 0.4b20 (released November 10, 2000)
=======================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.27 2000/12/21 11:14:54 stelian Exp $";
+ "$Id: tape.c,v 1.28 2000/12/21 15:01:54 stelian Exp $";
#endif /* not lint */
#include <config.h>
int nogripe = 0;
static void
-tperror(int signo)
+tperror(int errnum)
{
if (pipeout) {
- msg("write error on %s\n", tape);
+ msg("write error on %s: %s\n", tape, strerror(errnum));
quit("Cannot recover\n");
/* NOTREACHED */
}
- msg("write error %d blocks into volume %d\n", blocksthisvol, tapeno);
+ msg("write error %d blocks into volume %d: %s\n", blocksthisvol, tapeno, strerror(errnum));
broadcast("DUMP WRITE ERROR!\n");
- if (!query("Do you want to restart?"))
- dumpabort(0);
- msg("Closing this volume. Prepare to restart with new media;\n");
- msg("this dump volume will be rewritten.\n");
- killall();
- nogripe = 1;
- close_rewind();
- Exit(X_REWRITE);
+ if (query("Do you want to rewrite this volume?")) {
+ msg("Closing this volume. Prepare to restart with new media;\n");
+ msg("this dump volume will be rewritten.\n");
+ killall();
+ nogripe = 1;
+ close_rewind();
+ Exit(X_REWRITE);
+ }
+ if (query("Do you want to start the next tape?"))
+ return;
+ dumpabort(0);
}
static void
}
slp->sent = 0;
+ /* Check for errors */
+ if (got < 0)
+ tperror(-got);
+
/* Check for end of tape */
if (got < writesize) {
msg("End of tape detected\n");
dumpabort(0);
}
slaves[f].sent = 0;
+
+ if (got < 0)
+ tperror(-got);
+
if (got != writesize) {
msg("EOT detected in last 2 tape records!\n");
msg("Use a longer tape, decrease the size estimate\n");
}
slp->sent = 0;
+ if (got < 0)
+ tperror(-got);
+
if (got != writesize) {
quit("EOT detected at start of the tape!\n");
}
sigaction(SIGTERM, &sa, NULL); /* Slave sends SIGTERM on dumpabort() */
sa.sa_handler = sigpipe;
sigaction(SIGPIPE, &sa, NULL);
- sa.sa_handler = tperror;
- sigaction(SIGUSR1, &sa, NULL); /* Slave sends SIGUSR1 on tape errors */
sa.sa_handler = proceed;
sa.sa_flags = SA_RESTART;
sigaction(SIGUSR2, &sa, NULL); /* Slave sends SIGUSR2 to next slave */
register int nread;
int nextslave, size, eot_count;
volatile int wrote = 0;
- sigset_t sigset;
#ifdef __linux__
errcode_t retval;
#endif
if (eot_count > 0)
size = 0;
- if (wrote < 0) {
- (void) kill(master, SIGUSR1);
- sigemptyset(&sigset);
- sigaddset(&sigset, SIGINT);
- for (;;)
- sigsuspend(&sigset);
- } else {
- /*
- * pass size of write back to master
- * (for EOT handling)
- */
- (void) atomic_write( cmd, (char *)&size, sizeof size);
- }
+ /*
+ * pass errno back to master for special handling
+ */
+ if (wrote < 0)
+ size = -errno;
+
+ /*
+ * pass size of write back to master
+ * (for EOT handling)
+ */
+ (void) atomic_write( cmd, (char *)&size, sizeof size);
/*
* If partial write, don't want next slave to go.
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.22 2000/12/21 11:14:54 stelian Exp $";
+ "$Id: tape.c,v 1.23 2000/12/21 15:01:54 stelian Exp $";
#endif /* not lint */
#include <config.h>
#endif
seek_failed = (lseek(mt, i, SEEK_CUR) == (off_t)-1);
- if (seek_failed)
- err(1, "continuation failed");
+ if (seek_failed) {
+ warn("continuation failed");
+ if (!yflag && !reply("assume end-of-tape and continue"))
+ exit(1);
+ i = 0;
+ }
}
/*
* Handle end of tape.