]> granicus.if.org Git - sysstat/commitdiff
sysstat-12.5.3 v12.5.3
authorSebastien GODARD <sysstat@users.noreply.github.com>
Sun, 14 Feb 2021 10:07:01 +0000 (11:07 +0100)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Sun, 14 Feb 2021 10:07:01 +0000 (11:07 +0100)
sysstat version 12.5.3 final packaging.
Changelog added.
spec and lsm files updated.

This also is mainly a bugfix version (sar, sadf).
One noteworthy new feature is the addition of Link Time Optimization
(LTO) support for smaller binary executables (use --enable-lto to
enable it when compiling sysstat).

Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
54 files changed:
CHANGES
README.md
activity.c
common.c
common.h
count.c
count.h
format.c
iconfig [changed mode: 0755->0644]
iostat.c
iostat.h
json_stats.c
json_stats.h
mpstat.c
mpstat.h
pcp_def_metrics.c
pcp_def_metrics.h
pcp_stats.c
pcp_stats.h
pidstat.c
pidstat.h
pr_stats.c
pr_stats.h
raw_stats.c
raw_stats.h
rd_sensors.c
rd_sensors.h
rd_stats.c
rd_stats.h
rndr_stats.c
rndr_stats.h
sa.h
sa1.in
sa2.in
sa_common.c
sa_conv.c
sa_conv.h
sa_wrap.c
sadc.c
sadf.c
sadf.h
sadf_misc.c
sar.c
svg_stats.c
svg_stats.h
sysconfig.in
sysstat-12.5.3.lsm [moved from sysstat-12.5.2.lsm with 89% similarity]
sysstat-12.5.3.spec [moved from sysstat-12.5.2.spec with 99% similarity]
sysstat.in
systest.c
systest.h
version.in
xml_stats.c
xml_stats.h

diff --git a/CHANGES b/CHANGES
index 9a7f8b7a4cd44527618292299a3a44a1ecf3e7d0..d46ba36c1ec480e4ef4344156b4c0aae81fd4f26 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,28 @@
 Changes:
 
+2021/02/14: Version 12.5.3 - Sebastien Godard (sysstat <at> orange.fr)
+       * Add Link Time Optimization (LTO) support.
+       * Fix LTO compilation warnings.
+       * sar: Fix return code sent by write_stats() function [12.4.3].
+       * sar/sadc: Dereference nr array pointer in struct activity [12.4.3].
+       * sadf: SVG: Make graphs discontinuous for disconnected devices [12.4.3].
+       * sadf: SVG: Fix inadequate discontinuities in some graphs [12.4.3].
+       * sadf: Raw: Display number of items in debug mode even if it's zero.
+       * sadf: SVG: Use the <count> parameter entered on the command line [12.4.3].
+       * sadf: SVG: Add 'debug' option.
+       * sadf: Update manual page.
+       * sar/sadc/sadf: Check untrusted values before use [12.4.3].
+       * sar/sadc: Don't use IFNAMSIZ value from <net/if.h> [12.4.3].
+       * sar/sadf: Test codes returned by functions.
+       * simtest: Update/enhance simulation tests environment.
+       * simtest: Add new non regression tests (USB statistics, ...)
+       * Makefile: Define TEST flag when making simulation tests [12.4.3].
+       * Makefile: Add copyyear target to make it easier to update year in (C)
+         messages.
+       * Update NLS translations [12.4.3].
+       * Cosmetic changes in code. Some dead code removed. Code simplified.
+       * irqstat: Sync with upstream version (1.0.1-pre).
+
 2020/12/19: Version 12.5.2 - Sebastien Godard (sysstat <at> orange.fr)
        * [Aleksei Nikiforov]: Fix alignment and structure size for 32-bit
          systems [12.4.2].
index 5ba7004e937ce8cf928e8d1a4de97b2bbed08a7c..494623931ff933354d912a547833b51923bfc358 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 [![Total Alerts](https://img.shields.io/lgtm/alerts/g/sysstat/sysstat.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/sysstat/sysstat/alerts)
 [![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=45U6F9R73ESFQ)
 
-(C) 1999-2020 Sebastien GODARD (sysstat (at) orange (dot) fr)
+(C) 1999-2021 Sebastien GODARD (sysstat (at) orange (dot) fr)
 
 ### Introduction
 
index 74707f5046aed9b6e0e2b2aa11920bc16fca5855..3f3a3bf329abd6e180d5872a5f3aca4800235227 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * activity.c: Define system activities available for sar/sadc.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index af022243ba41960d0fada997df25c1412a8e64df..fa81c6cde997b59e012895625c9e2c4e25ce70fb 100644 (file)
--- a/common.c
+++ b/common.c
@@ -1,6 +1,6 @@
 /*
  * sar, sadc, sadf, mpstat and iostat common routines.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index a9902ee14937599f5d792bca3ad195b0ffaa4d52..ad88c37a63a73e0e5f4b566956621b0c7a382950 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _COMMON_H
diff --git a/count.c b/count.c
index 0bc57121c330fa3983ed2220ff08e0b28ceb5177..c1a976476fa91c72f7dfa7751cb64bdb649f1f14 100644 (file)
--- a/count.c
+++ b/count.c
@@ -1,6 +1,6 @@
 /*
  * count.c: Count items for which statistics will be collected.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/count.h b/count.h
index db1364e0ad627e0d50c724699b098fba4289f1de..cf0b16060b624a8817f62d91eb35224656713cba 100644 (file)
--- a/count.h
+++ b/count.h
@@ -1,7 +1,7 @@
 /*
  * count.h: Include file used to count items for which
  * statistics will be collected.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _COUNT_H
index 78cd1d89544509a82bb32643ecef52f1f928a679..9547f30ed7b52273ae68234271c746e71a2eac6d 100644 (file)
--- a/format.c
+++ b/format.c
@@ -1,6 +1,6 @@
 /*
  * format.c: Output format definitions for sadf and sar
- * (C) 2011-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/iconfig b/iconfig
old mode 100755 (executable)
new mode 100644 (file)
index 23afaf3..c9d57c3
--- a/iconfig
+++ b/iconfig
@@ -1,6 +1,6 @@
 #!/bin/sh
 #@(#) Configuration script for sysstat
-# (C) 2000-2020 Sebastien GODARD (sysstat <at> orange.fr)
+# (C) 2000-2021 Sebastien GODARD (sysstat <at> orange.fr)
 
 ASK="sh build/Ask.sh"
 
index 6eb5ce5fb4ca239e40cf346afcb827f9d59eac42..330f8c11f73895fa1e001c5df70814541f3a80b6 100644 (file)
--- a/iostat.c
+++ b/iostat.c
@@ -1,6 +1,6 @@
 /*
  * iostat: report CPU and I/O statistics
- * (C) 1998-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1998-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 344700b558827b3d40770064a7b2d8bde58cf82f..c051db17e2fbe9cafe8071d4ef84dacfa745f5c6 100644 (file)
--- a/iostat.h
+++ b/iostat.h
@@ -1,6 +1,6 @@
 /*
  * iostat: report CPU and I/O statistics
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _IOSTAT_H
index 3ecd069a054bac46d7fd858d6b0c3dca5e1ba948..f5c6c9647b51496cc6b8300a359405134bcfe3f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * json_stats.c: Funtions used by sadf to display statistics in JSON format.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 133a292bd40d2a7c3d8f129165ac2b58bd4e6b00..555b3f8a313bf49f7b7cbed33de3b4d5fbaa89bf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * json_stats.h: Include file used to display system statistics in JSON format.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _JSON_STATS_H
index bcef52cfd1646e5aef01e65d9485cf78c7c0a91f..0f33d82d957203a3775e8c16f480f27a809d7bf5 100644 (file)
--- a/mpstat.c
+++ b/mpstat.c
@@ -1,6 +1,6 @@
 /*
  * mpstat: per-processor statistics
- * (C) 2000-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2000-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 93a74cc2d70917ab8e22080e042df5c423a890c6..23229dcc27eb0443d7728de533372558b3ecafc8 100644 (file)
--- a/mpstat.h
+++ b/mpstat.h
@@ -1,6 +1,6 @@
 /*
  * mpstat: per-processor statistics
- * (C) 2000-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2000-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _MPSTAT_H
index 61cf7af28d87efef469804c74821dcbeeeb92bd4..25ce809cb3ee71dc09af24ed537971eabba5b91f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pcp_def_metrics.c: Funtions used by sadf to define PCP metrics
- * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 809bab2562d774919aba6e4f4d35e22a12cb239a..0af1d3fbd97901eb0dea17aa01ab9f1567f43815 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pcp_def_metrics.h: Include file used to define PCP metrics.
- * (C) 2019-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2019-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _PCP_DEF_METRICS_H
index dfcfcf09824681e7c4e551a2fb9848fbd3a4c51d..a76da9d729eb794f6e51caa32d65129d85dc09d8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pcp_stats.c: Funtions used by sadf to create PCP archive files.
- * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index f2823984d6dc219d0c5c946bfa42a0c58ed2c7cd..c988ea27b4941829191bd2ba6c62771f1435768d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pcp_stats.h: Include file used to display system statistics in PCP format.
- * (C) 2019-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2019-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _PCP_STATS_H
index 799a1fca5324d3e054bf45b9b4e810f95c089e79..076e6640b7b10d6e1425d278858887749eea54fa 100644 (file)
--- a/pidstat.c
+++ b/pidstat.c
@@ -1,6 +1,6 @@
 /*
  * pidstat: Report statistics for Linux tasks
- * (C) 2007-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2007-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 9113d2e3df545619bbe6330a7de407f95e9ad64e..ac7a6a088ac8b75c76e3a90f7f8e474d996049d3 100644 (file)
--- a/pidstat.h
+++ b/pidstat.h
@@ -1,6 +1,6 @@
 /*
  * pidstat: Display per-process statistics.
- * (C) 2007-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2007-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 #ifndef _PIDSTAT_H
 #define _PIDSTAT_H
index 92b4dfd6b7c3a08fc521ab3867315f5e0b0b0bdf..640e2a6c8e959f292ee567ecea025d8b5171e555 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pr_stats.c: Functions used by sar to display statistics
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index dd524048f7143db525e14b2d28c7936c1cd5c35e..22427f665460308d7c203ea194ac0c979de6f2bf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * pr_stats.h: Include file used to display system statistics
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _PR_STATS_H
index 719844e626be8a473e38c775ceafd4911364dc15..1b65d7981b37fd53607b325eb8b3769c3f1b5ed4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * raw_stats.c: Functions used by sar to display statistics in raw format.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 6bd8645a6fd995fba6e3e4cabc7d9cb8fdda33d1..f213127efbef9f383a2182c73e4134ed199777ef 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * raw_stats.h: Include file used to display statistics in raw format.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RAW_STATS_H
index 1d3f5609ec740ee51a4b915fe152bbdee62487c1..9d2b1992d347737352b9cbeb5bbedc610ee920f5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_sensors.c: Read sensors statistics
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index ee5e92c3be91c8e7179301c3f3d9736e16b40168..4d464ba937ad7b57313820048db349c4c4a2c78d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_sensors.h: Include file used to read sensors statistics
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RD_SENSORS_H
index 284ba2f97263f7749352582d18c016ff31b6e37f..ec074200d4b1cfd8d41a84215acb438cbf1cb044 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_stats.c: Read system statistics
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 8e401bd963176ada61ae95f4bb8a42705eac1ca1..9dda2df10f1065256d7d140e87145d081b51d60d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rd_stats.h: Include file used to read system statistics
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RD_STATS_H
index 8567802d3cefbd155173b335c94edce178300664..9c71ca0a77da15459402482f6d3bcd7df9030a7d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rndr_stats.c: Funtions used by sadf to display statistics in selected format.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 3db592e3fd710a53d383b7c8d0b3a3031504947b..68d5750df4865dd24ca59391a093a8b8bdc75e75 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * rndr_stats.h: Include file used to display system statistics in selected format.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _RNDR_STATS_H
diff --git a/sa.h b/sa.h
index 9029a938b07db99c4e5c21454b911963b3b2fb9b..289ab5380b39569748a656c00986f2520b189d05 100644 (file)
--- a/sa.h
+++ b/sa.h
@@ -1,6 +1,6 @@
 /*
  * sar/sadc: Report system activity
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SA_H
diff --git a/sa1.in b/sa1.in
index 3ae2e3bc41558b6596d1120c36d0ff566380bc70..2b0b7edd327c7fd9751388bd9045e2d21b012ee4 100644 (file)
--- a/sa1.in
+++ b/sa1.in
@@ -1,6 +1,6 @@
 #!/bin/sh
 # @SA_LIB_DIR@/sa1
-# (C) 1999-2020 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2021 Sebastien Godard (sysstat <at> orange.fr)
 #
 #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
 #@(#) sa1: Collect and store binary data in system activity data file.
diff --git a/sa2.in b/sa2.in
index 14eeab5d21ef7ecca2cacb58236639c9a46f3fe2..062db868b06c4b85572405d46941b62ba506dc1f 100644 (file)
--- a/sa2.in
+++ b/sa2.in
@@ -1,6 +1,6 @@
 #!/bin/sh
 # @SA_LIB_DIR@/sa2
-# (C) 1999-2020 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 1999-2021 Sebastien Godard (sysstat <at> orange.fr)
 #
 #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@
 #@(#) sa2: Write a daily report
index 0fa2cec552579b7b402415af7dcb9e6f6c8576fa..eb168dc0bcca3483b6dc1851dd5b32c2d696a961 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sar and sadf common routines.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 5575bd1f42736aa149c5d252ed417d8629bc6b54..ba68ecb0e9a30e9e58a4a2f081a95636d303bad6 100644 (file)
--- a/sa_conv.c
+++ b/sa_conv.c
@@ -1,6 +1,6 @@
 /*
  * sa_conv.c: Convert an old format sa file to the up-to-date format.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 3e49b9342ab88ac59613db16c201b83113c9ff70..bfe2a5b02f10a0bd1dc10e2661a0a13d1ed50fb6 100644 (file)
--- a/sa_conv.h
+++ b/sa_conv.h
@@ -1,6 +1,6 @@
 /*
  * sa_conv.h: Include file for "sadf -c" command.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SA_CONV_H
index bfc2a81827ec8d82c16d70ad01686d506357db31..53681469675d12c14083ac76347137de391e8b2f 100644 (file)
--- a/sa_wrap.c
+++ b/sa_wrap.c
@@ -1,6 +1,6 @@
 /*
  * sysstat - sa_wrap.c: Functions used in activity.c
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadc.c b/sadc.c
index 8f4d6452406ac7790ec2aa0caca2cd31b037989d..c4de3a71a2dd82e7dd01bee799f2002950927f8b 100644 (file)
--- a/sadc.c
+++ b/sadc.c
@@ -1,6 +1,6 @@
 /*
  * sadc: system activity data collector
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadf.c b/sadf.c
index c648692d34a8fbf4242d9d4dc10dda7c692606de..fcb1063d422626d00f4200f3ce3a4a4d9708817d 100644 (file)
--- a/sadf.c
+++ b/sadf.c
@@ -1,6 +1,6 @@
 /*
  * sadf: system activity data formatter
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sadf.h b/sadf.h
index 87cd3414103a8ea44ca8e6ee7e26df112213c6ec..18fd06644ac10ef677e25c0987d0c19c3aa31335 100644 (file)
--- a/sadf.h
+++ b/sadf.h
@@ -1,6 +1,6 @@
 /*
  * sadf: System activity data formatter
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SADF_H
index 87c8dfea86b84d78b917d9327d832eb3b1f7aab9..5ea2c98457c8e880d9befd192d50a78cf8f8bef9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sadf_misc.c: Funtions used by sadf to display special records
- * (C) 2011-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2011-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
diff --git a/sar.c b/sar.c
index 519ad65bbc7ab743aa8bf7db2ed0bc3364e614bf..c49e777074cbb5abe23852045e8a322bd90a1109 100644 (file)
--- a/sar.c
+++ b/sar.c
@@ -1,6 +1,6 @@
 /*
  * sar: report system activity
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 5427458cf22ec5a9b29b0f23806e04e4c5fc956c..821869d534f67fa44018af8cb3df9a7970aceda1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * svg_stats.c: Funtions used by sadf to display statistics in SVG format.
- * (C) 2016-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2016-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 32aecc0d92606677659a5fcf75de8be1febb5964..57b6019d9a76abd2e0684ad29020ff393f8b5328 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * svg_stats.h: Include file used to display system statistics in SVG format.
- * (C) 2016-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 2016-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SVG_STATS_H
index c9478494c753e34d7a6e9d6f7eb31ea9b2995164..2a231f492ac20bf3aa4ed72831e2ed85b970d804 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SYSCONFIG_H
similarity index 89%
rename from sysstat-12.5.2.lsm
rename to sysstat-12.5.3.lsm
index dea1e3c840be7f36c4ac7509c483df452a26febf..4e611dabd6a8ee0bb5d8c97f2af4e3cf5c819e70 100644 (file)
@@ -1,7 +1,7 @@
 Begin4
 Title:         sysstat - the sar, sadf, mpstat, iostat, tapestat, pidstat and cifsiostat commands for Linux
-Version:       12.5.2
-Entered-date:  2020-12-19
+Version:       12.5.3
+Entered-date:  2021-02-14
 Description:   The sysstat package contains the sar, sadf, mpstat, iostat, tapestat,
                pidstat, cifsiostat and sa tools for Linux.
                The sar command collects and reports system activity
@@ -29,11 +29,11 @@ Keywords:   system administration, system monitoring, sar, sadf, iostat, mpstat, t
 Author:                sysstat@NOSPAM.orange.fr (Sebastien Godard)
 Maintained-by: sysstat@NOSPAM.orange.fr (Sebastien Godard)
 Primary-site:  http://pagesperso-orange.fr/sebastien.godard/
-               1395kiB sysstat-12.5.2.tar.gz
-               1098kiB sysstat-12.5.2.tar.bz2
-               799kiB sysstat-12.5.2.tar.xz
-               1322kiB sysstat-12.5.2-1.src.rpm
-               434kiB sysstat-12.5.2-1.x86_64.rpm
+               1493kiB sysstat-12.5.3.tar.gz
+               1143kiB sysstat-12.5.3.tar.bz2
+               838kiB sysstat-12.5.3.tar.xz
+               1407kiB sysstat-12.5.3-1.src.rpm
+               433kiB sysstat-12.5.3-1.x86_64.rpm
 Alternate-site:
 Copying-policy:        GPL
 End
similarity index 99%
rename from sysstat-12.5.2.spec
rename to sysstat-12.5.3.spec
index b99fe5afa863326cc1350b4e7511d802090bcd49..5d7042f029300b4514e36bce72f2ce324ea954ca 100644 (file)
@@ -1,6 +1,6 @@
 Summary:       SAR, SADF, MPSTAT, IOSTAT, TAPESTAT, PIDSTAT and CIFSIOSTAT for Linux
 Name:          sysstat
-Version:       12.5.2
+Version:       12.5.3
 Release:       1
 License:       GPL
 Group:                 Applications/System
index c12bbba2c2b7d1adb5803df2f7214dffc3141bee..b850d7ecd6385ea43bf049c6f379838ddd822283 100644 (file)
@@ -4,7 +4,7 @@
 # description: Reset the system activity logs
 #
 # @INIT_DIR@/sysstat
-# (C) 2000-2020 Sebastien Godard (sysstat <at> orange.fr)
+# (C) 2000-2021 Sebastien Godard (sysstat <at> orange.fr)
 #
 ### BEGIN INIT INFO
 # Provides:            sysstat
index acb094a0fe1a2439482197de31724e940a5aebb0..71f73b2032d6a54d2207cd3081a06e6fb721ec5f 100644 (file)
--- a/systest.c
+++ b/systest.c
@@ -1,6 +1,6 @@
 /*
  * sysstat test functions.
- * (C) 2019-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 2019-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index 0b8ee2be2a185256a5e1f20c3a4ecf71d55a4810..6c1ff3f4de4fb07de699618df007225c77e3bd0c 100644 (file)
--- a/systest.h
+++ b/systest.h
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _SYSTEST_H
index f291e81275803c51e0c54f2c955b898dee4fd0af..78e3f2cd43982099c66f58e86e90648d3e7e9d12 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * sysstat: System performance tools for Linux
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _VERSION_H
index c693235c6cfa1e467fa8c463c6580c923b2d57d3..324f984dae8a816e55f5019404f7a275b17ccfaa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * xml_stats.c: Funtions used by sadf to display statistics in XML.
- * (C) 1999-2020 by Sebastien GODARD (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien GODARD (sysstat <at> orange.fr)
  *
  ***************************************************************************
  * This program is free software; you can redistribute it and/or modify it *
index df1bbcac0c6f8a6d4591133ab305e5f327dc15df..cc014f9dcecf5dff6c0fa8e3baf01fda810683cf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * xml_stats.h: Include file used to display system statistics in XML.
- * (C) 1999-2020 by Sebastien Godard (sysstat <at> orange.fr)
+ * (C) 1999-2021 by Sebastien Godard (sysstat <at> orange.fr)
  */
 
 #ifndef _XML_STATS_H