* [Peter Schiffer]: Added option -y to iostat. This option
prevents iostat from displaying its first report with
statistics since system boot.
+ * [Peter Schiffer]: Increase NR_CPUS and NR_IRQS values.
* [John Lau]: sadc didn't collect all its activities when
it had to overwrite an old sysstat data file with some
unknown activity formats. This is now fixed.
for easier reading.
* Fixed wrong command execution syntax in configure script.
* iostat manual page updated.
+ * CREDITS file updated.
2012/10/06: Version 10.1.2 - Sebastien Godard (sysstat <at> orange.fr)
* New field added to sar -u and mpstat: %gnice (time spent
#define SEC_PER_DAY 3600 * 24
/* Maximum number of CPUs */
-#ifdef __CPU_SETSIZE
+#if defined(__CPU_SETSIZE) && __CPU_SETSIZE > 2048
#define NR_CPUS __CPU_SETSIZE
#else
-#define NR_CPUS 1024
+#define NR_CPUS 2048
#endif
/* Maximum number of interrupts */
-#define NR_IRQS 256
+#define NR_IRQS 1024
/* Size of /proc/interrupts line, CPU data excluded */
#define INTERRUPTS_LINE 128