From 5a5561b6aecfdc56fd4ab4e9e21858f2075ed795 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 18 Jul 2025 10:07:06 +0200 Subject: [PATCH] plugin: doc: resolve mixup of 'storage' and 'mixed' cases Signed-off-by: Wolfgang Bumiller --- src/PVE/Storage/Plugin.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm index 23cc95d..ef04cb1 100644 --- a/src/PVE/Storage/Plugin.pm +++ b/src/PVE/Storage/Plugin.pm @@ -2438,9 +2438,9 @@ sub new_backup_provider { Returns a string with the type of snapshot that qemu can do for a specific volume 'qemu' : Qemu must perform the snapshot. The storage plugin does nothing. -'mixed' : The storage plugin *transparently* performs the snapshot and the running VM does not +'storage' : The storage plugin *transparently* performs the snapshot and the running VM does not need to do anything. -'storage' : The storage performs an offline snapshot and qemu then has to reopen the volume. +'mixed' : The storage performs an offline snapshot and qemu then has to reopen the volume. Qemu will either "unhook" the snapshot by moving its data into the child snapshot or Qemu will "commit" the child snapshot to the one which is being removed. Both must be supported.