1
0
Fork 0
virtualbox/debian/patches/27-hide-host-cache-warning.patch
Daniel Baumann 4244229482
Merging debian version 7.1.10-dfsg-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-24 21:15:15 +02:00

43 lines
3 KiB
Diff

Description: Silently enable the host I/O cache when the image is on an ext4/XFS partition.
No need to warn users about it.
Author: Felix Geyer <fgeyer@debian.org>
Index: virtualbox/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
===================================================================
--- virtualbox.orig/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
+++ virtualbox/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
@@ -1095,34 +1095,12 @@
if ( enmFsTypeFile == RTFSTYPE_EXT4
|| enmFsTypeFile == RTFSTYPE_XFS)
{
- i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
- N_("The host I/O cache for at least one controller is disabled "
- "and the medium '%s' for this VM "
- "is located on an %s partition. There is a known Linux "
- "kernel bug which can lead to the corruption of the virtual "
- "disk image under these conditions.\n"
- "Either enable the host I/O cache permanently in the VM "
- "settings or put the disk image and the snapshot folder "
- "onto a different file system.\n"
- "The host I/O cache will now be enabled for this medium"),
- strFile.c_str(), enmFsTypeFile == RTFSTYPE_EXT4 ? "ext4" : "xfs");
*pfUseHostIOCache = true;
}
else if ( ( enmFsTypeSnap == RTFSTYPE_EXT4
|| enmFsTypeSnap == RTFSTYPE_XFS)
&& !mfSnapshotFolderExt4WarningShown)
{
- i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
- N_("The host I/O cache for at least one controller is disabled "
- "and the snapshot folder for this VM "
- "is located on an %s partition. There is a known Linux "
- "kernel bug which can lead to the corruption of the virtual "
- "disk image under these conditions.\n"
- "Either enable the host I/O cache permanently in the VM "
- "settings or put the disk image and the snapshot folder "
- "onto a different file system.\n"
- "The host I/O cache will now be enabled for this medium"),
- enmFsTypeSnap == RTFSTYPE_EXT4 ? "ext4" : "xfs");
*pfUseHostIOCache = true;
mfSnapshotFolderExt4WarningShown = true;
}