]> git.sur5r.net Git - bacula/bacula/commitdiff
Correct search boolean for getting Volume info
authorKern Sibbald <kern@sibbald.com>
Tue, 25 Sep 2007 03:49:17 +0000 (03:49 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 25 Sep 2007 03:49:17 +0000 (03:49 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5643 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/stored/acquire.c
bacula/technotes-2.3

index e3a9d813b139015a7c620931c73196352aa7b8c3..a3213b256d8a3e7c29fdfb784ba642ad9ece7941 100644 (file)
@@ -342,7 +342,7 @@ DCR *acquire_device_for_append(DCR *dcr)
     * find defines whether or not mount_next_write_volume should
     *   as the Director again about what Volume to use.
     */
-   find = is_suitable_volume_mounted(dcr);
+   find = !is_suitable_volume_mounted(dcr);
    if (dev->can_append()) {
       Dmsg0(190, "device already in append.\n");
       /*
@@ -374,7 +374,8 @@ DCR *acquire_device_for_append(DCR *dcr)
             goto get_out;
          }
          /* Wrong tape mounted, release it, then fall through to get correct one */
-         Dmsg0(190, "Wrong tape mounted, release and try mount.\n");
+         Dmsg1(190, "jid=%u Wrong tape mounted, release and try mount.\n",
+               (uint32_t)jcr->JobId);
          release = true;
          do_mount = true;
       } else {
@@ -384,7 +385,8 @@ DCR *acquire_device_for_append(DCR *dcr)
           *   we need to recycle the tape.
           */
           do_mount = strcmp(dcr->VolCatInfo.VolCatStatus, "Recycle") == 0;
-          Dmsg1(190, "Correct tape mounted. recycle=%d\n", do_mount);
+          Dmsg2(190, "jid=%u Correct tape mounted. recycle=%d\n", 
+                (uint32_t)jcr->JobId, do_mount);
           if (do_mount && dev->num_writers != 0) {
              Jmsg(jcr, M_FATAL, 0, _("Cannot recycle volume \"%s\""
                   " on device %s because it is in use by another job.\n"),
@@ -420,21 +422,23 @@ DCR *acquire_device_for_append(DCR *dcr)
       }
    } else {
       /* Not already in append mode, so mount the device */
-      Dmsg0(190, "Not in append mode, try mount.\n");
+      Dmsg2(190, "jid=%u Not in append mode, try mount find=%d\n", 
+            (uint32_t)jcr->JobId, find);
+
       ASSERT(dev->num_writers == 0);
       do_mount = true;
    }
 
    if (do_mount) {
-      Dmsg0(190, "Do mount_next_write_vol\n");
+      Dmsg1(190, "jid=%u Do mount_next_write_vol\n", (uint32_t)jcr->JobId);
       bool mounted = mount_next_write_volume(dcr, find, release);
       if (!mounted) {
          if (!job_canceled(jcr)) {
             /* Reduce "noise" -- don't print if job canceled */
             Jmsg(jcr, M_FATAL, 0, _("Could not ready device %s for append.\n"),
                dev->print_name());
-            Dmsg1(200, "Could not ready device %s for append.\n", 
-               dev->print_name());
+            Dmsg2(200, "jid=%u Could not ready device %s for append.\n", 
+               (uint32_t)jcr->JobId, dev->print_name());
          }
          goto get_out;
       }
index 1f8f18c4952e4f7c63827cbac69dc4ab779c7ceb..f540134f1abf03f349e7ca4e56205daef7fcf622 100644 (file)
@@ -2,6 +2,7 @@
 
 General:
 24Sep07 
+kes  Correct search boolean for getting Volume info
 ebl  Cleanup batch code.
 kes  Back out one small change to the reservation system (reserving a volume).
 kes  Rework how a Volume is mounted. It is now much more intelligent and