]> git.sur5r.net Git - bacula/bacula/commitdiff
Recursively call fix_device_block_write_error on error
authorKern Sibbald <kern@sibbald.com>
Sun, 11 Oct 2009 15:58:46 +0000 (17:58 +0200)
committerKern Sibbald <kern@sibbald.com>
Sun, 11 Oct 2009 15:58:46 +0000 (17:58 +0200)
bacula/src/stored/device.c
bacula/src/stored/protos.h
bacula/technotes

index 20a6c3a8a33f5e0c3f7a763c5fa24963b27262c2..a3eb0c5d982593dc3c065fac09b945675ac5d4c4 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
+   Copyright (C) 2000-2009 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -82,7 +82,7 @@
  *  Returns: true  on success
  *           false on failure
  */
-bool fixup_device_block_write_error(DCR *dcr)
+bool fixup_device_block_write_error(DCR *dcr, int retries)
 {
    char PrevVolName[MAX_NAME_LENGTH];
    DEV_BLOCK *label_blk;
@@ -185,10 +185,13 @@ bool fixup_device_block_write_error(DCR *dcr)
       berrno be;
       Dmsg1(0, _("write_block_to_device overflow block failed. ERR=%s"),
         be.bstrerror(dev->dev_errno));
-      Jmsg2(jcr, M_FATAL, 0, 
-           _("Catastrophic error. Cannot write overflow block to device %s. ERR=%s"),
-           dev->print_name(), be.bstrerror(dev->dev_errno));
-      goto bail_out;
+      /* Note: recursive call */
+      if (retries-- <= 0 || !fixup_device_block_write_error(dcr, retries)) {
+         Jmsg2(jcr, M_FATAL, 0, 
+              _("Catastrophic error. Cannot write overflow block to device %s. ERR=%s"),
+              dev->print_name(), be.bstrerror(dev->dev_errno));
+         goto bail_out;
+      }
    }
    ok = true;
 
index e18ca3aa327687da80a575aa74369f8653df6a14..fd51df7f7255668d477f7570b5ac1e6a8b57b27e 100644 (file)
@@ -127,7 +127,7 @@ void    dvd_remove_empty_part(DCR *dcr);
 /* From device.c */
 bool     open_device(DCR *dcr);
 bool     first_open_device(DCR *dcr);
-bool     fixup_device_block_write_error(DCR *dcr);
+bool     fixup_device_block_write_error(DCR *dcr, int retries=4);
 void     set_start_vol_position(DCR *dcr);
 void     set_new_volume_parameters(DCR *dcr);
 void     set_new_file_parameters(DCR *dcr);
index f76aafa251abbfd86b9399471ddc97705542378e..f484fe14321e63931f4f88818e4e60e30308ff5c 100644 (file)
@@ -3,6 +3,8 @@
 General:
 
 11Oct09
+kes  Apply Graham's idea for recovering from disk full by recursing
+     when doing fixup_write_error ...
 kes  Make fix for VirtualFull changing device based on suggestion by
      Nicolae Mihalache <mache@abcpages.com>
 08Oct09