From: Oliver Kurth Date: Mon, 9 Sep 2019 18:23:48 +0000 (-0700) Subject: Backout previous default "hgfs.packetSize.large" setting X-Git-Tag: stable-11.1.0~243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f9cd4d7690cd9e3a4a4d322ad4ffeaa175a523c;p=thirdparty%2Fopen-vm-tools.git Backout previous default "hgfs.packetSize.large" setting The default value of config option "hgfs.packetSize.large" is now FALSE. --- diff --git a/open-vm-tools/lib/include/hgfs.h b/open-vm-tools/lib/include/hgfs.h index c697f7265..ca97444fa 100644 --- a/open-vm-tools/lib/include/hgfs.h +++ b/open-vm-tools/lib/include/hgfs.h @@ -134,9 +134,9 @@ static INLINE size_t HgfsLargeIoMax(Bool useLegacy) // IN return gHgfsLargeIoMax; } #ifdef VMX86_TOOLS - if (!RpcVMX_ConfigGetBool(TRUE, "hgfs.packetSize.large")) { + if (!RpcVMX_ConfigGetBool(FALSE, "hgfs.packetSize.large")) { #else - if (!Config_GetBool(TRUE, "hgfs.packetSize.large")) { + if (!Config_GetBool(FALSE, "hgfs.packetSize.large")) { #endif gHgfsLargeIoMax = HGFS_LEGACY_LARGE_IO_MAX; } else { @@ -175,9 +175,9 @@ static INLINE size_t HgfsLargePacketMax(Bool useLegacy) // IN return gHgfsLargePacketMax; } #ifdef VMX86_TOOLS - if (!RpcVMX_ConfigGetBool(TRUE, "hgfs.packetSize.large")) { + if (!RpcVMX_ConfigGetBool(FALSE, "hgfs.packetSize.large")) { #else - if (!Config_GetBool(TRUE, "hgfs.packetSize.large")) { + if (!Config_GetBool(FALSE, "hgfs.packetSize.large")) { #endif gHgfsLargePacketMax = HGFS_LEGACY_LARGE_PACKET_MAX; } else {