mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 06:25:37 +03:00
dissect-image: lazily deactivate decrypted DM volumes
The DM block device may be still used by other processes.
This commit is contained in:
parent
f578c659c4
commit
ea16d7f48e
@ -1567,7 +1567,8 @@ DecryptedImage* decrypted_image_unref(DecryptedImage* d) {
|
||||
DecryptedPartition *p = d->decrypted + i;
|
||||
|
||||
if (p->device && p->name && !p->relinquished) {
|
||||
r = sym_crypt_deactivate_by_name(p->device, p->name, 0);
|
||||
/* Let's deactivate lazily, as the dm volume may be already/still used by other processes. */
|
||||
r = sym_crypt_deactivate_by_name(p->device, p->name, CRYPT_DEACTIVATE_DEFERRED);
|
||||
if (r < 0)
|
||||
log_debug_errno(r, "Failed to deactivate encrypted partition %s", p->name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user