File tree Expand file tree Collapse file tree 5 files changed +135
-92
lines changed Expand file tree Collapse file tree 5 files changed +135
-92
lines changed Original file line number Diff line number Diff line change 1
1
Changes:
2
2
3
+ 2015/02/13: Version 11.1.3 - Sebastien Godard (sysstat <at> orange.fr)
4
+ * sar/sadc: Added new metrics from /proc/meminfo to memory
5
+ statistics.
6
+ * sadf: Update output formats to take into account new memory
7
+ metrics.
8
+ * [Peter Schiffer]: Fixes from static analysis.
9
+ * [Peter Schiffer]: Prefer xz compression program when compressing
10
+ sa data files [11.0.3].
11
+ * [Peter Schiffer]: Portable way to detect 64 bit OS in configure
12
+ script [11.0.4].
13
+ * [Vasant Hegde]: sadc: Fix possible race condition in signal
14
+ handler code [11.0.3].
15
+ * Fix description of %util in iostat and sar manual pages [11.0.3].
16
+ * Fix wrong size used in upgrade_magic_section() function.
17
+ * Add new sadc_options variable to configure script.
18
+ * Rename --disable-man-group option to --disable-file-attr. This
19
+ configure's option prevents the build process from setting
20
+ attributes of files being installed.
21
+ * Make sure that no crontabs are activated when configure's option
22
+ --enable-copy-only is used [11.0.3].
23
+ * FAQ updated.
24
+ * RPM spec file updated.
25
+ * sar manual page updated.
26
+ * sadc manual page updated [11.0.3].
27
+ * CREDITS file updated.
28
+ * Code cleaned [11.0.3].
29
+
3
30
2014/10/19: Version 11.1.2 - Sebastien Godard (sysstat <at> orange.fr)
4
31
* [Robert Elliott]: Added irqtop command. irqtop monitors
5
32
differences in /proc/interrupts and /proc/softirqs per CPU,
Original file line number Diff line number Diff line change @@ -135,6 +135,10 @@ The following people have contributed to 'sysstat' in one way or another:
135
135
C�dric Marie <cedric.marie [at] openmailbox.org> sent me
136
136
several patches to improve pidstat.
137
137
138
+ Robert Elliott <Elliott [at] hp.com> contributed the irqtop
139
+ command, and Lance Shelton <Lance.Shelton [at] sandisk.com>
140
+ the irqstat command.
141
+
138
142
I would also thank the following people for their hints or bug reports
139
143
(in alphabetical order):
140
144
@@ -162,9 +166,11 @@ I would also thank the following people for their hints or bug reports
162
166
Dr. David Alan Gilbert <dave@tre[...].org>
163
167
David Gesswein <djg@drs[...].com>
164
168
Frank Glinka <glinkaf@uni[...].de>
169
+ John Goodyear <johngood@us[...].com>
165
170
Gurinder Shergill <gurinder.shergill@hp[...].com>
166
171
Ladislav Hagara <ladislav.hagara@uno[...].cz>
167
172
Don Harrop <don@swb[...].com>
173
+ Vasant Hegde <hegdevasant@lin[...].com>
168
174
J�rgen Heinemann <heinemann.juergen@hjc[...].de>
169
175
Kei Ishida <ishida.kei@oss[...].jp>
170
176
Tatsuo Ito <tito@mir[...].com>
Original file line number Diff line number Diff line change @@ -4937,11 +4937,19 @@ fi
4937
4937
4938
4938
SADC_DIR=$AuxPrefix /lib
4939
4939
if test -d $AuxPrefix /lib64; then
4940
- # Look for lm (long mode) flag to know if CPU is 64 bit
4941
- grep " lm " /proc/cpuinfo > /dev/null 2>&1
4942
- if test $? = 0; then
4943
- SADC_DIR=$AuxPrefix /lib64
4944
- fi
4940
+ # Verify that this OS is really 64 bit
4941
+ BITS=$( getconf LONG_BIT 2> /dev/null)
4942
+ if test $? = 0; then
4943
+ if test $BITS = 64; then
4944
+ SADC_DIR=$AuxPrefix /lib64
4945
+ fi
4946
+ else
4947
+ # Fallback: look for lm (long mode) flag to know if CPU is 64 bit
4948
+ grep " lm " /proc/cpuinfo > /dev/null 2>&1
4949
+ if test $? = 0; then
4950
+ SADC_DIR=$AuxPrefix /lib64
4951
+ fi
4952
+ fi
4945
4953
fi
4946
4954
4947
4955
{ $as_echo " $as_me :${as_lineno-$LINENO } : checking sadc directory" >&5
You can’t perform that action at this time.
0 commit comments