]> granicus.if.org Git - sysstat/commitdiff
Cosmetic changes in code
authorSebastien GODARD <sysstat@users.noreply.github.com>
Fri, 26 Apr 2019 10:15:10 +0000 (12:15 +0200)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Fri, 26 Apr 2019 10:15:10 +0000 (12:15 +0200)
Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
sa.h
sadc.c

diff --git a/sa.h b/sa.h
index 82bc50001bcb95e4e053da4be4667f8d34401356..583b3678d208bb545b2cf25f6dec43f814d45ee9 100644 (file)
--- a/sa.h
+++ b/sa.h
@@ -386,8 +386,13 @@ struct svg_hdr_parm {
  *
  * If the record header's type is R_COMMENT then we find only a comment
  * following the record_header structure.
+ *
  * If the record_header's type is R_RESTART then we find only the number of CPU
  * (of type __nr_t) of the machine following the record_header structure.
+ * This number is 1 for 1 CPU and not an SMP kernel (CPU "all"),
+ * 2 for 1 CPU and SMP kernel (CPU "all" and CPU 0), etc.
+ * Of course we display the real number of CPU (e.g. "1" for 1 CPU and SMP
+ * kernel) with the LINUX RESTART message.
  ***************************************************************************
  */
 
diff --git a/sadc.c b/sadc.c
index 557a8e77071e1027b90d9598c0ab5dc33c54cea8..0ad225d8db27df2a04f02604be21e3848c1cae5b 100644 (file)
--- a/sadc.c
+++ b/sadc.c
@@ -921,7 +921,7 @@ void open_ofile(int *ofd, char ofile[], int restart_mark)
                }
 
                if ((file_act[i].has_nr && (act[p]->f_count_index < 0)) ||
-                   (!file_act[i].has_nr && (act[p]->f_count_index >=0))) {
+                   (!file_act[i].has_nr && (act[p]->f_count_index >= 0))) {
 #ifdef DEBUG
                        fprintf(stderr, "%s: %s: has_nr=%d count_index=%d\n",
                                __FUNCTION__, act[p]->name, file_act[i].has_nr, act[p]->f_count_index);