From: Kruti Date: Fri, 3 May 2024 16:05:44 +0000 (-0700) Subject: Change to common header file not applicable to open-vm-tools. X-Git-Tag: stable-12.5.0~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae31ed20bfbf0e744701f60b7839f88aa73ae554;p=thirdparty%2Fopen-vm-tools.git Change to common header file not applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/log.h b/open-vm-tools/lib/include/log.h index 725330bd4..36ba86bd5 100644 --- a/open-vm-tools/lib/include/log.h +++ b/open-vm-tools/lib/include/log.h @@ -1,5 +1,6 @@ /********************************************************* - * Copyright (C) 1998-2023 VMware, Inc. All rights reserved. + * Copyright (c) 1998-2024 Broadcom. All rights reserved. + * The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -448,18 +449,18 @@ Log_SetOutputLevel(LogOutput *output, /* * Structure contains all the pointers to where value can be updated. - * Making VmxStats as a struct has its own advantage, such as updating + * Making VmxStatsInfo as a struct has its own advantage, such as updating * 'droppedChars' from the struct instead within LogFile. */ -struct VmxStatMinMax64; +struct StatFileMinMax64; typedef struct { uint64 *logMsgsDropped; // Number of dropped messages uint64 *logBytesDropped; // Number of drop bytes uint64 *logBytesLogged; // Bytes logged - struct VmxStatMinMax64 *logWriteMinMaxTime; // Min/max write time in US + struct StatsFileMinMax64 *logWriteMinMaxTime; // Min/max write time in US uint64 *logWriteAvgTime; // Average time to write in US } VmxStatsInfo;