aboutsummaryrefslogtreecommitdiff
path: root/libdiskfs/node-drop.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdiskfs/node-drop.c')
-rw-r--r--libdiskfs/node-drop.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libdiskfs/node-drop.c b/libdiskfs/node-drop.c
index 6a8ebd6d..00c84408 100644
--- a/libdiskfs/node-drop.c
+++ b/libdiskfs/node-drop.c
@@ -38,11 +38,13 @@ diskfs_drop_node (struct node *np)
{
mode_t savemode;
- if (np->dn_stat.st_nlink == 0)
+ /* XXX: if the filesystem is readonly, we cannot remove the files with no link
+ but e.g. memory mapping still in memory. This notably happens when
+ upgrading packages without restarting the corresponding processes. Fsck
+ will have to fix them. */
+ if (np->dn_stat.st_nlink == 0 && !diskfs_readonly)
{
diskfs_check_readonly ();
- // Pb when remounted readonly :/
- assert_backtrace (!diskfs_readonly);
if (np->dn_stat.st_mode & S_IPTRANS)
diskfs_set_translator (np, 0, 0, 0);