Skip to content

Commit 33f9e7a

Browse files
committed
Subvolume.vala: (btrfs) Wait for async file operations to complete.
With quotas disabled, available space wasn't being updated consistently when removing old snapshots. With quotas enabled, no time was allowed after committing to delete a subvolume before attempting to remove its corresponding qgroup, resulting in an error and requiring the user to delete the snapshot twice. Use the return codes from subvolume-sync and quota-rescan commands to control the pace during a delete operation. This allows qgroup- destroy to succeed and keeps the 'available space' value in the main window in sync with the current filesystem state. Unfortunately, as a result of this, snapshot deletion may take longer to complete even with quotas disabled. ref: #291
1 parent 36429af commit 33f9e7a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/Core/Subvolume.vala

+26
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,23 @@ public class Subvolume : GLib.Object{
164164
return false;
165165
}
166166

167+
log_debug("Waiting on btrfs to finish deleting...");
168+
while (exec_sync("btrfs subvolume sync %s".printf(mount_path), out std_out, out std_err) != 0) {
169+
log_debug("Still waiting for btrfs to finish deleting... %s".printf(std_err));
170+
sleep(1000);
171+
}
172+
167173
log_msg("%s: %s (Id:%ld)\n".printf(_("Deleted subvolume"), name, id));
168174

169175
if (App.btrfs_qgroups_enabled) {
170176
if ((id > 0) && (repo != null)){
177+
178+
log_debug("Rescanning quotas...");
179+
while (exec_sync("btrfs quota rescan %s".printf(mount_path), out std_out, out std_err) != 0) {
180+
log_debug("Still rescanning quotas... %s".printf(std_err));
181+
sleep(1000);
182+
}
183+
171184
log_msg("%s: 0/%ld".printf(_("Destroying qgroup"), id));
172185

173186
cmd = "btrfs qgroup destroy 0/%ld '%s'".printf(id, repo.mount_paths[name]);
@@ -179,6 +192,19 @@ public class Subvolume : GLib.Object{
179192
}
180193

181194
log_msg("%s: 0/%ld\n".printf(_("Destroyed qgroup"), id));
195+
196+
log_debug("Rescanning quotas (post)...");
197+
while (exec_sync("btrfs quota rescan %s".printf(mount_path), out std_out, out std_err) != 0) {
198+
log_debug("Still rescanning quotas (post)... %s".printf(std_err));
199+
sleep(1000);
200+
}
201+
202+
log_debug("Final sync (post)...");
203+
while (exec_sync("btrfs subvolume sync %s".printf(mount_path), out std_out, out std_err) != 0) {
204+
log_debug("Still syncing (post)... %s".printf(std_err));
205+
sleep(1000);
206+
}
207+
182208
}
183209
}
184210

0 commit comments

Comments
 (0)