]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Change to common header file not applicable to open-vm-tools.
authorKruti <kpendharkar@vmware.com>
Fri, 3 May 2024 16:05:44 +0000 (09:05 -0700)
committerKruti <kpendharkar@vmware.com>
Fri, 3 May 2024 16:05:44 +0000 (09:05 -0700)
open-vm-tools/lib/include/log.h

index 725330bd46470d54bad378bb58fa8c926523e972..36ba86bd5665bc68fd7777ed171bb4a2c5bc15b0 100644 (file)
@@ -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;