X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fstored%2Fdevice.c;h=679a158a5f028d6adc57bfe73c766e0b56fdad6f;hb=36b40d5c7f3ff90565ab73ac75f0dc4f6660ff37;hp=34fbc0cec7f03570b23573992eb098067286edc0;hpb=cd4bad547996dabd4e5a39dc0fe6bcb7c239f3e1;p=bacula%2Fbacula diff --git a/bacula/src/stored/device.c b/bacula/src/stored/device.c index 34fbc0cec7..679a158a5f 100644 --- a/bacula/src/stored/device.c +++ b/bacula/src/stored/device.c @@ -1,7 +1,7 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2000-2007 Free Software Foundation Europe e.V. + Copyright (C) 2000-2008 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. @@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Bacula® is a registered trademark of John Walker. + Bacula® is a registered trademark of Kern Sibbald. The licensor of Bacula is the Free Software Foundation Europe (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, Switzerland, email:ftf@fsfeurope.org. @@ -122,16 +122,19 @@ bool fixup_device_block_write_error(DCR *dcr) edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2), bstrftime(dt, sizeof(dt), time(NULL))); - if (!mount_next_write_volume(dcr, 1)) { + Dmsg0(050, "set_unload\n"); + dev->set_unload(); + if (!dcr->mount_next_write_volume()) { free_block(label_blk); dcr->block = block; dev->dlock(); goto bail_out; } + Dmsg1(050, "must_unload=%d\n", dev->must_unload()); dev->dlock(); /* lock again */ dev->VolCatInfo.VolCatJobs++; /* increment number of jobs on vol */ - dir_update_volume_info(dcr, false); /* send Volume info to Director */ + dir_update_volume_info(dcr, false, false); /* send Volume info to Director */ Jmsg(jcr, M_INFO, 0, _("New volume \"%s\" mounted on device %s at %s.\n"), dcr->VolumeName, dev->print_name(), bstrftime(dt, sizeof(dt), time(NULL))); @@ -157,7 +160,7 @@ bool fixup_device_block_write_error(DCR *dcr) /* * Walk through all attached jcrs indicating the volume has changed */ - Dmsg1(100, "Walk attached dcrs. Volume=%s\n", dev->VolCatInfo.VolCatName); + Dmsg1(100, "Notify vol change. Volume=%s\n", dev->VolCatInfo.VolCatName); DCR *mdcr; foreach_dlist(mdcr, dev->attached_dcrs) { JCR *mjcr = mdcr->jcr; @@ -199,6 +202,19 @@ bail_out: return ok; /* device locked */ } +void set_start_vol_position(DCR *dcr) +{ + DEVICE *dev = dcr->dev; + /* Set new start position */ + if (dev->is_tape()) { + dcr->StartBlock = dev->block_num; + dcr->StartFile = dev->file; + } else { + dcr->StartBlock = (uint32_t)dev->file_addr; + dcr->StartFile = (uint32_t)(dev->file_addr >> 32); + } +} + /* * We have a new Volume mounted, so reset the Volume parameters * concerning this job. The global changes were made earlier @@ -207,24 +223,12 @@ bail_out: void set_new_volume_parameters(DCR *dcr) { JCR *jcr = dcr->jcr; - DEVICE *dev = dcr->dev; if (dcr->NewVol && !dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE)) { Jmsg1(jcr, M_ERROR, 0, "%s", jcr->errmsg); } - /* Set new start/end positions */ - if (dev->is_tape()) { - dcr->StartBlock = dev->block_num; - dcr->StartFile = dev->file; - } else { - dcr->StartBlock = (uint32_t)dev->file_addr; - dcr->StartFile = (uint32_t)(dev->file_addr >> 32); - } - /* Reset indicies */ - dcr->VolFirstIndex = 0; - dcr->VolLastIndex = 0; + set_new_file_parameters(dcr); jcr->NumWriteVolumes++; dcr->NewVol = false; - dcr->WroteVol = false; } /* @@ -234,16 +238,8 @@ void set_new_volume_parameters(DCR *dcr) */ void set_new_file_parameters(DCR *dcr) { - DEVICE *dev = dcr->dev; + set_start_vol_position(dcr); - /* Set new start/end positions */ - if (dev->is_tape()) { - dcr->StartBlock = dev->block_num; - dcr->StartFile = dev->file; - } else { - dcr->StartBlock = (uint32_t)dev->file_addr; - dcr->StartFile = (uint32_t)(dev->file_addr >> 32); - } /* Reset indicies */ dcr->VolFirstIndex = 0; dcr->VolLastIndex = 0;