Be more careful about skipping shared file/directory creation
authorPanu Matilainen <pmatilai@redhat.com>
Mon, 28 Jan 2013 10:50:39 +0000 (12:50 +0200)
committerPanu Matilainen <pmatilai@redhat.com>
Tue, 29 Jan 2013 06:14:54 +0000 (08:14 +0200)
- Only skip shared file/dir creation if its actually being created
  by another package. Previously we could've decided to skip an entry
  where the other file was also being skipped for some other reason.
- Ensure %ghost entries always have FA_SKIP on install, previously
  they often were FA_CREATE which makes no sense for %ghost. We dont
  encounter %ghosts at all during install in the FSM as they dont
  exist in the payload, but the file disposition calculations need
  to take them into account now that we're avoiding redundant creates.
- Fixes a regression from commit f7f5f88f9f3d6587e747b034ccb64a3f00ff4e1e
  which unearthed the %ghost FA_CREATE issue, reported here:
  http://lists.fedoraproject.org/pipermail/buildsys/2013-January/004047.html
(cherry picked from commit a712252392eca75443ca45c10a72873cabec7963)

lib/transaction.c

index 4cd6720..1ed1f22 100644 (file)
@@ -570,7 +570,8 @@ assert(otherFi != NULL);
                }
            } else {
                /* Skip create on all but the first instance of a shared file */
-               if (rpmfsGetAction(otherFs, otherFileNum) != FA_UNKNOWN)
+               rpmFileAction oaction = rpmfsGetAction(otherFs, otherFileNum);
+               if (oaction != FA_UNKNOWN && !XFA_SKIPPING(oaction))
                    rpmfsSetAction(fs, i, FA_SKIP);
            }
 
@@ -758,6 +759,17 @@ static void skipInstallFiles(const rpmts ts, rpmte p)
        ix = rpmfiDX(fi);
        drc[ix]++;
 
+       /*
+        * Always skip %ghosts on install.
+        * XXX: Should we skip directory creation if there are only
+        * %ghosts in it? Traditionally we create the (empty) directory, so
+        * preserving that behavior for now at least: leave the refcount alone.
+        */
+       if (rpmfiFFlags(fi) & RPMFILE_GHOST) {
+           rpmfsSetAction(fs, i, FA_SKIP);
+           continue;
+       }
+
        /* Don't bother with skipped files */
        if (XFA_SKIPPING(rpmfsGetAction(fs, i))) {
            drc[ix]--; dff[ix] = 1;