summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2012-11-14 10:31:15 +0200
committerPanu Matilainen <pmatilai@redhat.com>2012-11-14 12:38:07 +0200
commitbda49fd7bdb4eaa1fa4d42c04efc28c7a0a78473 (patch)
tree06d62cd0bef368e6a46a72e27281cef1871db4e4 /lib
parenta4dd60f7fb599646689ca3d92acce129a8591dba (diff)
downloadrpm-bda49fd7bdb4eaa1fa4d42c04efc28c7a0a78473.tar.gz
rpm-bda49fd7bdb4eaa1fa4d42c04efc28c7a0a78473.tar.bz2
rpm-bda49fd7bdb4eaa1fa4d42c04efc28c7a0a78473.zip
Account for temporary disk-space requirements on updates (ticket #175)
- When updating packages, we first create them with a temporary names and only after all files from payload have been created this way, the files are renamed to the final target. This means that performing an update temporarily requires roughly twice the disk space (and inodes) compared to the final result on per-package level. Which matters when space is tight, such as presumably in RhBug:872314. - Simulate what happens on upgrades by adding block and inode delta to the equation: installing a file always consumes an inode and the specified amount of disk space. But when replacing files, reduce the size-delta from disk consumption *after* checking for problems in a given DSI. - Also fixes inode accounting which has been broken for forever (since commit a9a1fd866c573f41287e6ad256ce64b3970a1eaa more exactly) (cherry picked from commit 85df102165fdbe64978f2019d757d400e7448218)
Diffstat (limited to 'lib')
-rw-r--r--lib/transaction.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/transaction.c b/lib/transaction.c
index facc36a7b..13516eb01 100644
--- a/lib/transaction.c
+++ b/lib/transaction.c
@@ -53,6 +53,8 @@ struct diskspaceInfo_s {
int64_t iavail; /*!< No. of inodes available. */
int64_t obneeded; /*!< Bookkeeping to avoid duplicate reports */
int64_t oineeded; /*!< Bookkeeping to avoid duplicate reports */
+ int64_t bdelta; /*!< Delta for temporary space need on updates */
+ int64_t idelta; /*!< Delta for temporary inode need on updates */
};
/* Adjust for root only reserved space. On linux e2fs, this is 5%. */
@@ -208,7 +210,11 @@ static void rpmtsUpdateDSI(const rpmts ts, dev_t dev, const char *dirName,
*/
case FA_CREATE:
dsi->bneeded += bneeded;
- dsi->bneeded -= BLOCK_ROUND(prevSize, dsi->bsize);
+ dsi->ineeded++;
+ if (prevSize) {
+ dsi->bdelta += BLOCK_ROUND(prevSize, dsi->bsize);
+ dsi->idelta++;
+ }
break;
case FA_ERASE:
@@ -252,6 +258,12 @@ static void rpmtsCheckDSIProblems(const rpmts ts, const rpmte te)
dsi->oineeded = dsi->ineeded;
}
}
+
+ /* Adjust for temporary -> final disk consumption */
+ dsi->bneeded -= dsi->bdelta;
+ dsi->bdelta = 0;
+ dsi->ineeded -= dsi->idelta;
+ dsi->idelta = 0;
}
}