Book Sle Tuning
Book Sle Tuning
Guide
SUSE Linux Enterprise Desktop 12 SP3
System Analysis and Tuning Guide
SUSE Linux Enterprise Desktop 12 SP3
SUSE LLC
10 Canal Park Drive
Suite 200
Cambridge MA 02141
USA
https://www.suse.com/documentation
Copyright © 2006– 2017 SUSE LLC and contributors. All rights reserved.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Docu-
mentation License, Version 1.2 or (at your option) version 1.3; with the Invariant Section being this copyright
notice and license. A copy of the license version 1.2 is included in the section entitled “GNU Free Documentation
License”.
For SUSE trademarks, see http://www.suse.com/company/legal/ . All other third-party trademarks are the prop-
erty of their respective owners. Trademark symbols (®, ™ etc.) denote trademarks of SUSE and its affiliates.
Asterisks (*) denote third-party trademarks.
All information found in this book has been compiled with utmost attention to detail. However, this does not
guarantee complete accuracy. Neither SUSE LLC, its affiliates, the authors nor the translators shall be held liable
for possible errors or the consequences thereof.
Contents
I BASICS 1
II SYSTEM MONITORING 5
2.3 Processes 19
Interprocess Communication: ipcs 19 • Process List: ps 20 • Process
Tree: pstree 21 • Table of Processes: top 22 • z Systems Hypervisor
Monitor: hyptop 23 • A top-like I/O Monitor: iotop 25 • Modify a
process's niceness: nice and renice 26
2.5 Networking 32
Basic Network Diagnostics: ip 32 • Show the Network Usage of Processes:
nethogs 33 • Ethernet Cards in Detail: ethtool 34 • Show the Network
Status: ss 35
5 Kernel Probes 76
5.1 Supported Architectures 76
7 OProfile—System-Wide Profiler 86
7.1 Conceptual Overview 86
IV RESOURCE MANAGEMENT 93
A.6 October 2014 (Initial Release of SUSE Linux Enterprise Desktop 12) 209
SUSE Linux Enterprise Desktop is used for a broad range of usage scenarios in enterprise and
scientific data centers. SUSE has ensured SUSE Linux Enterprise Desktop is set up in a way that
it accommodates different operation purposes with optimal performance. However, SUSE Linux
Enterprise Desktop must meet very different demands when employed on a number crunching
server compared to a le server, for example.
It is not possible to ship a distribution that is optimized for all workloads. Different workloads
vary substantially in some aspects. Most important among those are I/O access patterns, memory
access patterns, and process scheduling. A behavior that perfectly suits a certain workload might
reduce performance of another workload. For example, I/O-intensive tasks, such as handling
database requests, usually have completely different requirements than CPU-intensive tasks,
such as video encoding. The versatility of Linux makes it possible to configure your system in
a way that it brings out the best in each usage scenario.
This manual introduces you to means to monitor and analyze your system. It describes methods
to manage system resources and to tune your system. This guide does not offer recipes for spe-
cial scenarios, because each server has got its own different demands. It rather enables you to
thoroughly analyze your servers and make the most out of them.
Part I, “Basics”
Tuning a system requires a carefully planned proceeding. Learn which steps are necessary
to successfully improve your system.
1 Available Documentation
In addition, the product documentation is usually available in your installed system under /
usr/share/doc/manual .
2 Feedback
Several feedback channels are available:
Mail
For feedback on the documentation of this product, you can also send a mail to doc-
[email protected] . Make sure to include the document title, the product version and the
publication date of the documentation. To report errors or suggest enhancements, provide
a concise description of the problem and refer to the respective section number and page
(or URL).
3 Documentation Conventions
The following notices and typographical conventions are used in this documentation:
Alt , Alt – F1 : a key to press or a key combination; keys are shown in uppercase as on
a keyboard
Commands that must be run with root privileges. Often you can also prefix these com-
mands with the sudo command to run them as non-privileged user.
root # command
Notices
This manual discusses how to nd the reasons for performance problems and pro-
vides means to solve these problems. Before you start tuning your system, you
should make sure you have ruled out common problems and have found the cause
for the problem. You should also have a detailed plan on how to tune the system,
because applying random tuning tips often will not help and could make things
worse.
2. In case the degradation is new, identify any recent changes to the system.
4. Specify a metric that can be used to analyze performance. This metric could for example
be latency, throughput, the maximum number of users that are simultaneously logged in,
or the maximum number of active users.
5. Measure current performance using the metric from the previous step.
6. Identify the subsystem(s) where the application is spending the most time.
7.
a. Monitor the system and/or the application.
9. Remeasure the current performance without monitoring using the same metric as before.
Latency
The time to deliver a page
Throughput
Number of pages served per second or megabytes transferred per second
Active Users
The maximum number of users that can be downloading pages while still receiving pages
within an acceptable latency
Check the output of the systemd journal (see Book “Administration Guide”, Chapter 16
“journalctl: Query the systemd Journal”) for unusual entries.
In case of I/O problems with physical disks, make sure it is not caused by hardware prob-
lems (check the disk with the smartmontools ) or by a full disk.
Ensure that background jobs are scheduled to be carried out in times the server load is
low. Those jobs should also run with low priority (set via nice ).
If the machine runs several services using the same resources, consider moving services
to another server.
There are number of programs, tools, and utilities which you can use to examine
the status of your system. This chapter introduces some and describes their most im-
portant and frequently used parameters.
For each of the described commands, examples of the relevant outputs are presented. In the ex-
amples, the rst line is the command itself (after the tux > or root #). Omissions are indicated
with square brackets ( [...] ) and long lines are wrapped where necessary. Line breaks for long
lines are indicated by a backslash ( \ ).
The descriptions have been kept short so that we can include as many utilities as possible. Further
information for all the commands can be found in the manual pages. Most of the commands also
understand the parameter --help , which produces a brief list of possible parameters.
6 SLED 12 SP3
2.1 Multi-Purpose Tools
While most Linux system monitoring tools monitor only a single aspect of the system, there are
a few tools with a broader scope. To get an overview and nd out which part of the system to
examine further, use these tools rst.
2.1.1 vmstat
vmstat collects information about processes, memory, I/O, interrupts and CPU. If called without
a sampling rate, it displays average values since the last reboot. When called with a sampling
rate, it displays actual samples:
r
Shows the number of processes in a runnable state. These processes are either executing or
waiting for a free CPU slot. If the number of processes in this column is constantly higher
than the number of CPUs available, this may be an indication of insufficient CPU power.
b
Shows the number of processes waiting for a resource other than a CPU. A high number
in this column may indicate an I/O problem (network or disk).
swpd
The amount of swap space (KB) currently used.
free
The amount of unused memory (KB).
inact
Recently unused memory that can be reclaimed. This column is only visible when calling
vmstat with the parameter -a (recommended).
active
Recently used memory that normally does not get reclaimed. This column is only visible
when calling vmstat with the parameter -a (recommended).
buff
File buer cache (KB) in RAM that contains le system metadata. This column is not visible
when calling vmstat with the parameter -a .
cache
Page cache (KB) in RAM with the actual contents of les. This column is not visible when
calling vmstat with the parameter -a .
si / so
Amount of data (KB) that is moved from swap to RAM ( si ) or from RAM to swap ( so )
per second. High so values over a long period of time may indicate that an application
is leaking memory and the leaked memory is being swapped out. High si values over a
long period of time could mean that an application that was inactive for a very long time
is now active again. Combined high si and so values for prolonged periods of time are
evidence of swap thrashing and may indicate that more RAM needs to be installed in the
system because there is not enough memory to hold the working set size.
bo
Number of blocks per second sent to a block device (for example, a disk write). Note that
swapping also impacts the values shown here.
in
Interrupts per second. A high value may indicate a high I/O level (network and/or disk),
but could also be triggered for other reasons such as inter-processor interrupts triggered
by another activity. Make sure to also check /proc/interrupts to identify the source
of interrupts.
cs
Number of context switches per second. This is the number of times that the kernel replaces
executable code of one program in memory with that of another program.
us
Percentage of CPU usage executing application code.
sy
Percentage of CPU usage executing kernel code.
id
Percentage of CPU time spent idling. If this value is zero over a longer time, your CPU(s)
are working to full capacity. This is not necessarily a bad sign—rather refer to the values
in columns r and b to determine if your machine is equipped with sufficient CPU power.
wa
If "wa" time is non-zero, it indicates throughput lost because of waiting for I/O. This may
be inevitable, for example, if a le is being read for the rst time, background writeback
cannot keep up, and so on. It can also be an indicator for a hardware bottleneck (network
or hard disk). Lastly, it can indicate a potential for tuning the virtual memory manager
(refer to Chapter 14, Tuning the Memory Management Subsystem).
st
Percentage of CPU time stolen from a virtual machine.
2.1.2 dstat
dstat is a replacement for tools such as vmstat , iostat , netstat , or ifstat . dstat dis-
plays information about the system resources in real time. For example, you can compare disk
usage in combination with interrupts from the IDE controller, or compare network bandwidth
with the disk throughput (in the same interval).
By default, its output is presented in readable tables. Alternatively, CSV output can be produced
which is suitable as a spreadsheet import format.
It is written in Python and can be enhanced with plug-ins.
This is the general syntax:
All options and parameters are optional. Without any parameter, dstat displays statistics about
CPU ( -c , --cpu ), disk ( -d , --disk ), network ( -n , --net ), paging ( -g , --page ), and the
interrupts and context switches of the system ( -y , --sys ); it refreshes the output every second
ad infinitum:
root # dstat
You did not select any stats, using -cdngy by default.
----total-cpu-usage---- -dsk/total- -net/total- ---paging-- ---system--
usr sys idl wai hiq siq| read writ| recv send| in out | int csw
0 0 100 0 0 0| 15k 44k| 0 0 | 0 82B| 148 194
0 0 100 0 0 0| 0 0 |5430B 170B| 0 0 | 163 187
0 0 100 0 0 0| 0 0 |6363B 842B| 0 0 | 196 185
-a , --all
equal to -cdngy (default)
-f , --full
expand -C , -D , -I , -N and -S discovery lists
-v , --vmstat
equal to -pmgdsc , -D total
DELAY
delay in seconds between each update
To generate reports on the y, call sar with an interval (seconds) and a count. To generate
reports from les specify a le name with the option -f instead of interval and count. If le
name, interval and count are not specified, sar attempts to generate a report from /var/log/
sa/saDD , where DD stands for the current day. This is the default location to where sadc (the
system activity data collector) writes its data. Query multiple les with multiple -f options.
Find examples for useful sar calls and their interpretation below. For detailed information on
the meaning of each column, refer to the man (1) of sar . Also refer to the man page for more
options and reports— sar offers plenty of them.
When called with no options, sar shows a basic report about CPU usage. On multi-processor
machines, results for all CPUs are summarized. Use the option -P ALL to also see statistics for
individual CPUs.
root # sar 10 5
Linux 4.4.21-64-default (jupiter) 10/12/16 _x86_64_ (2 CPU)
%iowait displays the percentage of time that the CPU was idle while waiting for an I/O request.
If this value is significantly higher than zero over a longer time, there is a bottleneck in the
I/O system (network or hard disk). If the %idle value is zero over a longer time, your CPU is
working at capacity.
Generate an overall picture of the system memory (RAM) by using the option -r :
root # sar -r 10 5
Linux 4.4.21-64-default (jupiter) 10/12/16 _x86_64_ (2 CPU)
17:55:27 kbmemfree kbmemused %memused kbbuffers kbcached kbcommit %commit kbactive kbinact kbdirty
17:55:37 104232 1834624 94.62 20 627340 2677656 66.24 802052 828024 1744
17:55:47 98584 1840272 94.92 20 624536 2693936 66.65 808872 826932 2012
17:55:57 87088 1851768 95.51 20 605288 2706392 66.95 827260 821304 1588
17:56:07 86268 1852588 95.55 20 599240 2739224 67.77 829764 820888 3036
17:56:17 104260 1834596 94.62 20 599864 2730688 67.56 811284 821584 3164
Average: 96086 1842770 95.04 20 611254 2709579 67.03 815846 823746 2309
The columns kbcommit and %commit show an approximation of the maximum amount of memory
(RAM and swap) that the current workload could need. While kbcommit displays the absolute
number in kilobytes, %commit displays a percentage.
18:23:01 pgpgin/s pgpgout/s fault/s majflt/s pgfree/s pgscank/s pgscand/s pgsteal/s %vmeff
18:23:11 366.80 11.60 542.50 1.10 4354.80 0.00 0.00 0.00 0.00
18:23:21 0.00 333.30 1522.40 0.00 18132.40 0.00 0.00 0.00 0.00
18:23:31 47.20 127.40 1048.30 0.10 11887.30 0.00 0.00 0.00 0.00
18:23:41 46.40 2.50 336.10 0.10 7945.00 0.00 0.00 0.00 0.00
18:23:51 0.00 583.70 2037.20 0.00 17731.90 0.00 0.00 0.00 0.00
Average: 92.08 211.70 1097.30 0.26 12010.28 0.00 0.00 0.00 0.00
The majflt/s (major faults per second) column shows how many pages are loaded from disk into
memory. The source of the faults may be le accesses or faults. At times, many major faults are
normal. For example, during application start-up time. If major faults are experienced for the
entire lifetime of the application it may be an indication that there is insufficient main memory,
particularly if combined with large amounts of direct scanning (pgscand/s).
The %vmeff column shows the number of pages scanned (pgscand/s) in relation to the ones being
reused from the main memory cache or the swap cache (pgsteal/s). It is a measurement of the
efficiency of page reclaim. Healthy values are either near 100 (every inactive page swapped out
is being reused) or 0 (no pages have been scanned). The value should not drop below 30.
Use the option -d to display the block device (hard disk, optical drive, USB storage device, etc.).
Make sure to use the additional option -p (pretty-print) to make the DEV column readable.
root # sar -d -p 10 5
Linux 4.4.21-64-default (jupiter) 10/12/16 _x86_64_ (2 CPU)
18:46:09 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
18:46:19 sda 1.70 33.60 0.00 19.76 0.00 0.47 0.47 0.08
18:46:19 sr0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
18:46:19 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
18:46:29 sda 8.60 114.40 518.10 73.55 0.06 7.12 0.93 0.80
18:46:29 sr0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
18:46:29 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
18:46:39 sda 40.50 3800.80 454.90 105.08 0.36 8.86 0.69 2.80
18:46:39 sr0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
18:46:39 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
18:46:49 sda 1.40 0.00 204.90 146.36 0.00 0.29 0.29 0.04
18:46:49 sr0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
18:46:49 DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
18:46:59 sda 3.30 0.00 503.80 152.67 0.03 8.12 1.70 0.56
18:46:59 sr0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Compare the Average values for tps, rd_sec/s, and wr_sec/s of all disks. Constantly high values in
the svctm and %util columns could be an indication that I/O subsystem is a bottleneck.
If the machine uses multiple disks, then it is best if I/O is interleaved evenly between disks
of equal speed and capacity. It will be necessary to take into account whether the storage has
multiple tiers. Furthermore, if there are multiple paths to storage then consider what the link
saturation will be when balancing how storage is used.
The option -n lets you generate multiple network related reports. Specify one of the following
keywords along with the -n :
sar reports are not always easy to parse for humans. kSar, a Java application visualizing your
sar data, creates easy-to-read graphs. It can even generate PDF reports. kSar takes data gener-
ated on the y and past data from a le. kSar is licensed under the BSD license and is available
from https://sourceforge.net/projects/ksar/ .
Invoking iostat in this way will help you nd out whether throughput is different from your
expectation, but not why. Such questions can be better answered by an extended report which
can be generated by invoking iostat -x . Extended reports additionally include, for example,
information on average queue sizes and average wait times. It may also be easier to evaluate
the data if idle block devices are excluded using the -z switch. Find definitions for each of the
displayed column titles in the man page of iostat ( man 1 iostat ).
You can also specify that a certain device should be monitored at specified intervals. For exam-
ple, to generate ve reports at three-second intervals for the device sda , use:
To show statistics of network le systems (NFS), there are two similar utilities:
root # mpstat 2 5
Linux 4.4.21-64-default (jupiter) 10/12/16 _x86_64_ (2 CPU)
13:51:10 CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
13:51:12 all 8,27 0,00 0,50 0,00 0,00 0,00 0,00 0,00 0,00 91,23
13:51:14 all 46,62 0,00 3,01 0,00 0,00 0,25 0,00 0,00 0,00 50,13
13:51:16 all 54,71 0,00 3,82 0,00 0,00 0,51 0,00 0,00 0,00 40,97
13:51:18 all 78,77 0,00 5,12 0,00 0,00 0,77 0,00 0,00 0,00 15,35
13:51:20 all 51,65 0,00 4,30 0,00 0,00 0,51 0,00 0,00 0,00 43,54
Average: all 47,85 0,00 3,34 0,00 0,00 0,40 0,00 0,00 0,00 48,41
The ratio between the %usr and %sys. For example, a ratio of 10:1 indicates the workload
is mostly running application code and analysis should focus on the application. A ratio
of 1:10 indicates the workload is mostly kernel-bound and tuning the kernel is worth
considering. Alternatively, determine why the application is kernel-bound and see if that
can be alleviated.
Whether there is a subset of CPUs that are nearly fully utilized even if the system is lightly
loaded overall. Few hot CPUs can indicate that the workload is not parallelized and could
benefit from executing on a machine with a smaller number of faster processors.
The output depends on the CPU type and may vary. To display more details such as temperature
and power, use the --debug option. For more command line options and an explanation of the
eld descriptions, refer to man 8 turbostat .
Similarly, pidstat -d can be used to estimate how much I/O tasks are doing, whether they
are sleeping on that I/O and how many clock ticks the task was stalled.
root # lsof -p $$
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
bash 8842 root cwd DIR 0,32 222 6772 /root
bash 8842 root rtd DIR 0,32 166 256 /
bash 8842 root txt REG 0,32 656584 31066 /bin/bash
bash 8842 root mem REG 0,32 1978832 22993 /lib64/libc-2.19.so
[...]
bash 8842 root 2u CHR 136,2 0t0 5 /dev/pts/2
bash 8842 root 255u CHR 136,2 0t0 5 /dev/pts/2
The special shell variable $$ , whose value is the process ID of the shell, has been used.
When used with -i , lsof lists currently open Internet les as well:
root # lsof -i
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
wickedd-d 917 root 8u IPv4 16627 0t0 UDP *:bootpc
wickedd-d 918 root 8u IPv6 20752 0t0 UDP [fe80::5054:ff:fe72:5ead]:dhcpv6-client
sshd 3152 root 3u IPv4 18618 0t0 TCP *:ssh (LISTEN)
sshd 3152 root 4u IPv6 18620 0t0 TCP *:ssh (LISTEN)
master 4746 root 13u IPv4 20588 0t0 TCP localhost:smtp (LISTEN)
master 4746 root 14u IPv6 20589 0t0 TCP localhost:smtp (LISTEN)
sshd 8837 root 5u IPv4 293709 0t0 TCP jupiter.suse.de:ssh->venus.suse.de:33619 (ESTABLISHED)
sshd 8837 root 9u IPv6 294830 0t0 TCP localhost:x11 (LISTEN)
sshd 8837 root 10u IPv4 294831 0t0 TCP localhost:x11 (LISTEN)
2.3 Processes
root # ipcs
------ Message Queues --------
key msqid owner perms used-bytes messages
To check how many sshd processes are running, use the option -p together with the command
pidof , which lists the process IDs of the given processes.
The process list can be formatted according to your needs. The option L returns a list of all
keywords. Enter the following command to issue a list of all processes sorted by memory usage:
USEFUL ps CALLS
ps axo pid,%cpu,rss,vsz,args,wchan
Shows every process, their PID, CPU usage ratio, memory size (resident and virtual), name,
and their syscall.
ps axfo pid,args
Show a process tree.
The parameter -p adds the process ID to a given name. To have the command lines displayed
as well, use the -a parameter:
By default the output is sorted by CPU usage (column %CPU, shortcut Shift – P ). Use the
following key combinations to change the sort eld:
You can run hyptop in interactive mode (default) or in batch mode with the -b option. Help
in the interactive mode is available by pressing ? after hyptop is started.
Output for the sys_list window under LPAR:
iotop displays columns for the I/O bandwidth read and written by each process during the
sampling period. It also displays the percentage of time the process spent while swapping in
and while waiting on I/O. For each process, its I/O priority (class/level) is shown. In addition,
the total I/O bandwidth read and written during the sampling period is displayed at the top
of the interface.
O toggles between showing all processes and threads (default view) and showing only
those doing I/O. (This function is similar to adding --only on command line.)
P toggles between showing threads (default view) and processes. (This function is similar
to --only .)
A toggles between showing the current I/O bandwidth (default view) and accumulated
I/O operations since iotop was started. (This function is similar to --accumulated .)
Q quits iotop .
Following is an example output of the command iotop --only , while find and emacs are
running:
iotop can be also used in a batch mode ( -b ) and its output stored in a le for later analysis.
For a complete set of options, see the manual page ( man 8 iotop ).
Running nice COMMAND increments the current nice level for the given command by 10. Using
nice -n LEVEL COMMAND lets you specify a new niceness relative to the current one.
To change the niceness of a running process, use renice PRIORITY -p PROCESS_ID , for ex-
ample:
2.4 Memory
The options -b , -k , -m , -g show the output in bytes, KB, MB, or GB, respectively. The para-
meter -s delay ensures that the display is refreshed every DELAY seconds. For example, free
-s 1.5 produces an update every 1.5 seconds.
MemTotal: 1942636 kB
MemFree: 1294352 kB
MemAvailable: 1458744 kB
Buffers: 876 kB
Cached: 278476 kB
SwapCached: 0 kB
Active: 368328 kB
Inactive: 199368 kB
Active(anon): 288968 kB
Inactive(anon): 10568 kB
Active(file): 79360 kB
Inactive(file): 188800 kB
MemTotal
Total amount of RAM.
MemFree
Amount of unused RAM.
MemAvailable
Estimate of how much memory is available for starting new applications without swapping.
Buffers
File buer cache in RAM containing le system metadata.
SwapCached
Page cache for swapped-out memory.
Active(anon) tracks swap-backed memory. This includes private and shared anony-
mous mappings and private le pages after copy-on-write.
Inactive(anon) tracks swap backed memory. This includes private and shared anony-
mous mappings and private le pages after copy-on-write.
Unevictable
Amount of memory that cannot be reclaimed (for example, because it is Mlocked or used
as a RAM disk).
Mlocked
Amount of memory that is backed by the mlock system call. mlock allows processes to
define which part of physical RAM their virtual memory should be mapped to. However,
mlock does not guarantee this placement.
SwapTotal
Amount of swap space.
SwapFree
Amount of unused swap space.
Writeback
Amount of memory that is currently being written to disk.
Mapped
Memory claimed with the mmap system call.
Shmem
Memory shared between groups of processes, such as IPC data, tmpfs data, and shared
anonymous memory.
Slab
Memory allocation for internal data structures of the kernel.
SReclaimable
Slab section that can be reclaimed, such as caches (inode, dentry, etc.).
SUnreclaim
Slab section that cannot be reclaimed.
KernelStack
Amount of kernel space memory used by applications (through system calls).
PageTables
Amount of memory dedicated to page tables of all processes.
NFS_Unstable
NFS pages that have already been sent to the server, but are not yet committed there.
Bounce
Memory used for bounce buers of block devices.
WritebackTmp
Memory used by FUSE for temporary writeback buers.
Committed_AS
An approximation of the total amount of memory (RAM and swap) that the current work-
load would need in the worst case.
VmallocTotal
Amount of allocated kernel virtual address space.
VmallocUsed
Amount of used kernel virtual address space.
VmallocChunk
The largest contiguous block of available kernel virtual address space.
HardwareCorrupted
Amount of failed memory (can only be detected when using ECC RAM).
AnonHugePages
Anonymous hugepages that are mapped into user space page tables. These are allocated
transparently for processes without being specifically requested, therefore they are also
known as transparent hugepages (THP).
HugePages_Total
Number of preallocated hugepages for use by SHM_HUGETLB and MAP_HUGETLB or through
the hugetlbfs le system, as defined in /proc/sys/vm/nr_hugepages .
HugePages_Free
Number of hugepages available.
HugePages_Rsvd
Number of hugepages that are committed.
HugePages_Surp
Number of hugepages available beyond HugePages_Total (“surplus”), as defined in /proc/
sys/vm/nr_overcommit_hugepages .
Hugepagesize
Size of a hugepage—on AMD64/Intel 64 the default is 2048 KB.
2.5 Networking
ip can also show interfaces ( link ), routing tables ( route ), and much more—refer to man 8
ip for details.
root # ip route
default via 192.168.2.1 dev eth1
192.168.2.0/24 dev eth0 proto kernel scope link src 192.168.2.100
192.168.2.0/24 dev eth1 proto kernel scope link src 192.168.2.101
192.168.2.0/24 dev eth2 proto kernel scope link src 192.168.2.102
root # ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen
1000
link/ether 52:54:00:44:30:51 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen
1000
link/ether 52:54:00:a3:c1:fb brd ff:ff:ff:ff:ff:ff
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen
1000
link/ether 52:54:00:32:a4:09 brd ff:ff:ff:ff:ff:ff
The following table shows ethtool options that you can use to query the device for specific
information:
-k offload information
root # ss
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port
u_str ESTAB 0 0 * 14082 * 14083
u_str ESTAB 0 0 * 18582 * 18583
u_str ESTAB 0 0 * 19449 * 19450
u_str ESTAB 0 0 @/tmp/dbus-gmUUwXABPV 18784 * 18783
u_str ESTAB 0 0 /var/run/dbus/system_bus_socket 19383 * 19382
u_str ESTAB 0 0 @/tmp/dbus-gmUUwXABPV 18617 * 18616
u_str ESTAB 0 0 @/tmp/dbus-58TPPDv8qv 19352 * 19351
u_str ESTAB 0 0 * 17658 * 17657
u_str ESTAB 0 0 * 17693 * 17694
[..]
To show all network ports currently open, use the following command:
root # ss -l
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port
nl UNCONN 0 0 rtnl:4195117 *
nl UNCONN 0 0 rtnl:wickedd-auto4/811 *
nl UNCONN 0 0 rtnl:wickedd-dhcp4/813 *
nl UNCONN 0 0 rtnl:4195121 *
nl UNCONN 0 0 rtnl:4195115 *
nl UNCONN 0 0 rtnl:wickedd-dhcp6/814 *
nl UNCONN 0 0 rtnl:kernel *
nl UNCONN 0 0 rtnl:wickedd/817 *
nl UNCONN 0 0 rtnl:4195118 *
nl UNCONN 0 0 rtnl:nscd/706 *
nl UNCONN 4352 0 tcpdiag:ss/2381 *
[...]
root # ss -t -a -p
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:ssh *:* users:(("sshd",1551,3))
LISTEN 0 100 127.0.0.1:smtp *:* users:(("master",1704,13))
ESTAB 0 132 10.120.65.198:ssh 10.120.4.150:55715 users:(("sshd",2103,5))
LISTEN 0 128 :::ssh :::* users:(("sshd",1551,4))
LISTEN 0 100 ::1:smtp :::* users:(("master",1704,14))
Query the allocation and use of interrupts with the following command:
The address assignment of executables and libraries is contained in the maps le:
A lot more information can be obtained from the /proc le system. Some important les and
their contents are:
/proc/devices
Available devices
/proc/modules
Kernel modules loaded
/proc/cmdline
Kernel command line
/proc/meminfo
Detailed information about memory usage
/proc/config.gz
gzip -compressed configuration le of the kernel currently running
2.6.1 procinfo
Important information from the /proc le system is summarized by the command procinfo :
Bootup: Mon Jul 28 09:54:13 2014 Load average: 1.61 0.85 0.74 2/904 25949
To see all the information, use the parameter -a . The parameter -nN produces updates of the
information every N seconds. In this case, terminate the program by pressing Q .
sysctl fs (/proc/sys/fs/)
Used le handles, quotas, and other le system-oriented parameters. For details see /usr/
src/linux/Documentation/sysctl/fs.txt .
sysctl vm (/proc/sys/vm/)
Entries in this path relate to information about the virtual memory, swapping, and caching.
For details see /usr/src/linux/Documentation/sysctl/vm.txt
To set or change a parameter for the current session, use the command sysctl -w PARA-
METER = VALUE . To permanently change a setting, add a line PARAMETER = VALUE to /etc/
sysctl.conf .
root # lspci
00:00.0 Host bridge: Intel Corporation 82845G/GL[Brookdale-G]/GE/PE \
DRAM Controller/Host-Hub Interface (rev 01)
00:01.0 PCI bridge: Intel Corporation 82845G/GL[Brookdale-G]/GE/PE \
Host-to-AGP Bridge (rev 01)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM \
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM \
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM \
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM \
(ICH4/ICH4-M) USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 81)
00:1f.0 ISA bridge: Intel Corporation 82801DB/DBL (ICH4/ICH4-L) \
LPC Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801DB (ICH4) IDE \
Controller (rev 01)
00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) \
SMBus Controller (rev 01)
00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM \
(ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)
01:00.0 VGA compatible controller: Matrox Graphics, Inc. G400/G450 (rev 85)
02:08.0 Ethernet controller: Intel Corporation 82801DB PRO/100 VE (LOM) \
Ethernet Controller (rev 81)
root # lspci -v
[...]
00:03.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet \
Controller (rev 02)
Information about device name resolution is obtained from the le /usr/share/pci.ids . PCI
IDs not listed in this le are marked “Unknown device.”
The parameter -vv produces all the information that could be queried by the program. To view
the pure numeric values, use the parameter -n .
root # lsusb
Bus 004 Device 007: ID 0ea0:2168 Ours Technology, Inc. Transcend JetFlash \
2.0 / Astone USB Drive
Bus 004 Device 006: ID 04b4:6830 Cypress Semiconductor Corp. USB-2.0 IDE \
Adapter
Bus 004 Device 005: ID 05e3:0605 Genesys Logic, Inc.
Bus 004 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 005: ID 046d:c012 Logitech, Inc. Optical Mouse
Bus 001 Device 001: ID 0000:0000
┌──────THERMAL ZONES(SENSORS)──────────────────────────────┐
│Thermal Zones: acpitz00 │
│Trip Points: PC │
└──────────────────────────────────────────────────────────┘
┌─────────── COOLING DEVICES ──────────────────────────────┐
For detailed information on how to interpret the data, how to log thermal data and how to use
tmon to test and tune cooling devices and sensors, refer to the man page: man 8 tmon . The
package tmon is not installed by default.
The parameter -i outputs a mime type string rather than the traditional description.
root # mount
/dev/sda2 on / type ext4 (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
devtmpfs on /dev type devtmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,mode=1777)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/sda3 on /home type ext3 (rw)
securityfs on /sys/kernel/security type securityfs (rw)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
gvfs-fuse-daemon on /home/tux/.gvfs type fuse.gvfs-fuse-daemon \
(rw,nosuid,nodev,user=tux)
Obtain information about total usage of the le systems with the command df . The parameter -
h (or --human-readable ) transforms the output into a form understandable for common users.
tux > df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 20G 5,9G 13G 32% /
devtmpfs 1,6G 236K 1,6G 1% /dev
tmpfs 1,6G 668K 1,6G 1% /dev/shm
/dev/sda3 208G 40G 159G 20% /home
The parameter --file-system produces details of the properties of the le system in which
the specified le is located:
Following termination of the less process, which was running on another terminal, the le sys-
tem can successfully be unmounted. When used with -k option, fuser will terminate processes
accessing the le as well.
tux > w
If any users of other systems have logged in remotely, the parameter -f shows the computers
from which they have established the connection.
real 0m4.051s 1
user 0m0.042s 2
sys 0m0.205s 3
1 The real time that elapsed from the command's start-up until it finished.
2 CPU time of the user as reported by the times system call.
3 CPU time of the system as reported by the times system call.
The output of /usr/bin/time is much more detailed. It is recommended to run it with the -
v switch to produce human-readable output.
Tip: Bindings
There are Perl, Python, Ruby, and PHP bindings available for RRDtool, so that you can
write your own monitoring scripts in your preferred scripting language.
RRDtool accepts time information in a special format - so called Unix time. It is defined
as the number of seconds since the midnight of January 1, 1970 (UTC). For example,
1272907114 represents 2010-05-03 17:18:34.
The free memory information is reported in bytes with free -b . Prefer to supply basic
units (bytes) instead of multiple units (like kilobytes).
The line with the echo ... command contains the future name of the database le
( free_mem.rrd ), and together creates a command line for updating RRDtool values.
Create the initial Robin Round database for our example with the following command:
POINTS TO NOTICE
This command creates a le called free_mem.rrd for storing our measured values in a
Round Robin type database.
The --step specifies the time interval in seconds with which the measured data will be
supplied to the database.
The DS:memory:GAUGE:600:U:U part introduces a new data source for the database. It
is called memory, its type is gauge, the maximum number between two updates is 600
seconds, and the minimal and maximal value in the measured range are unknown (U).
RRA:AVERAGE:0.5:1:24 creates Round Robin archive (RRA) whose stored data are
processed with the consolidation functions (CF) that calculates the average of data points. 3
arguments of the consolidation function are appended to the end of the line.
If no error message is displayed, then free_mem.rrd database is created in the current directory:
As you can see, the size of free_mem.rrd remained the same even after updating its data.
POINTS TO NOTICE
AVERAGE will fetch average value points from the database, because only one data source
is defined (Section 2.11.2.2, “Creating the Database”) with AVERAGE processing and no other
function is available.
The rst line of the output prints the name of the data source as defined in Section 2.11.2.2,
“Creating the Database”.
The left results column represents individual points in time, while the right one represents
corresponding measured average values in scientific notation.
POINTS TO NOTICE
--start and --end limit the time range within which the graph will be drawn.
The LINE... part specifies properties of the line to be drawn into the graph. It is 2 pixels
wide, its data come from the free_memory definition, and its color is red.
--vertical-label sets the label to be printed along the y axis, and --title sets the
main label for the whole graph.
--zoom specifies the zoom factor for the graph. This value must be greater than zero.
--x-grid specifies how to draw grid lines and their labels into the graph. Our example
places them every second, while major grid lines are placed every 4 seconds. Labels are
placed every 10 seconds under the major grid lines.
apparmor/
AppArmor log les. See Book “Security Guide” for details of AppArmor.
audit/
Logs from the audit framework. See Book “Security Guide” for details.
ConsoleKit/
Logs of the ConsoleKit daemon (daemon for tracking what users are logged in and how
they interact with the computer).
cups/
Access and error logs of the Common Unix Printing System ( cups ).
firewall
Firewall logs.
gdm/
Log les from the GNOME display manager.
lastlog
A database containing information on the last login of each user. Use the command last-
log to view. See man 8 lastlog for more information.
localmessages
Log messages of some boot scripts, for example the log of the DHCP client.
mail*
Mail server ( postfix , sendmail ) logs.
messages
This is the default place where all kernel and system log messages go and should be the
rst place (along with /var/log/warn ) to look at in case of problems.
NetworkManager
NetworkManager log les.
news/
Log messages from a news server.
ntp
Logs from the Network Time Protocol daemon ( ntpd ).
pk_backend_zypp*
PackageKit (with libzypp back-end) log les.
puppet/
Log les from the data center automation tool puppet.
samba/
Log les from Samba, the Windows SMB/CIFS le server.
warn
Log of all system warnings and errors. This should be the rst place (along with the output
of the systemd journal) to look in case of problems.
wtmp
Database of all login/logout activities, and remote connections. Use the command last
to view. See man 1 last for more information.
Xorg.0.log
X.Org start-up log le. Refer to this in case you have problems starting X.Org. Copies from
previous X.Org starts are numbered Xorg. ? .log.
YaST2/
All YaST log les.
zypp/
libzypp log les. Refer to these les for the package installation history.
zypper.log
Logs from the command line installer zypper .
To search for strings or regular expressions in log les use grep . awk is useful for parsing and
rewriting log les.
# Low detail report on all sshd events recorded (incl. archived logs)
logwatch --service sshd --detail Low --range All --archives --print
# Mail a report on all smartd messages from May 5th to May 7th to root@localhost
logwatch --service smartd --range 'between 5/5/2005 and 5/7/2005' \
--mailto root@localhost --print
The --range option has got a complex syntax—see logwatch --range help for details. A
list of all services that can be queried is available with the following command:
logwatch can be customized to great detail. However, the default configuration should usual-
ly be sufficient. The default configuration les are located under /usr/share/logwatch/de-
fault.conf/ . Never change them because they would get overwritten again with the next
update. Rather place custom configuration in /etc/logwatch/conf/ (you may use the de-
fault configuration le as a template, though). A detailed HOWTO on customizing logwatch is
available at /usr/share/doc/packages/logwatch/HOWTO-Customize-LogWatch . The follow-
ing configuration les exist:
logwatch.conf
The main configuration le. The default version is extensively commented. Each configu-
ration option can be overwritten on the command line.
ignore.conf
Filter for all lines that should globally be ignored by logwatch .
services/*.conf
The service directory holds configuration les for each service you can generate a report
for.
logfiles/*.conf
Specifications on which log les should be parsed for each service.
Depending on the current user and host name, the log contains a line similar to this:
5 Kernel Probes 76
7 OProfile—System-Wide Profiler 86
4 SystemTap—Filtering and Analyzing System Data
SystemTap provides a command line interface and a scripting language to examine the activities
of a running Linux system, particularly the kernel, in ne detail. SystemTap scripts are written
in the SystemTap scripting language, are then compiled to C-code kernel modules and inserted
into the kernel. The scripts can be designed to extract, filter and summarize data, thus allowing
the diagnosis of complex performance problems or functional problems. SystemTap provides
information similar to the output of tools like netstat , ps , top , and iostat . However, more
filtering and analysis options can be used for the collected information.
4.1.2 Tapsets
Tapsets are a library of pre-written probes and functions that can be used in SystemTap scripts.
When a user runs a SystemTap script, SystemTap checks the script's probe events and handlers
against the tapset library. SystemTap then loads the corresponding probes and functions before
translating the script to C. Like SystemTap scripts themselves, tapsets use the le name extension
*.stp .
However, unlike SystemTap scripts, tapsets are not meant for direct execution. They constitute
the library from which other scripts can pull definitions. Thus, the tapset library is an abstraction
layer designed to make it easier for users to define events and functions. Tapsets provide aliases
for functions that users could want to specify as an event. Knowing the proper alias is often
easier than remembering specific kernel functions that might vary between kernel versions.
stap
SystemTap front-end. Runs a SystemTap script (either from le, or from standard input). It
translates the script into C code, compiles it, and loads the resulting kernel module into a
running Linux kernel. Then, the requested system trace or probe functions are performed.
staprun
SystemTap back-end. Loads and unloads kernel modules produced by the SystemTap front-
end.
To avoid giving root access to users solely to enable them to work with SystemTap, use one
of the following SystemTap groups. They are not available by default on SUSE Linux Enterprise
Desktop, but you can create the groups and modify the access rights accordingly. Also adjust
the permissions of the staprun command if the security implications are appropriate for your
environment.
stapdev
Members of this group can run SystemTap scripts with stap , or run SystemTap instru-
mentation modules with staprun . As running stap involves compiling scripts into ker-
nel modules and loading them into the kernel, members of this group still have effective
root access.
stapusr
Members of this group are only allowed to run SystemTap instrumentation modules
with staprun . In addition, they can only run those modules from /lib/modules/KER-
NEL_VERSION/systemtap/ . This directory must be owned by root and must only be
writable for the root user.
/lib/modules/KERNEL_VERSION/systemtap/
Holds the SystemTap instrumentation modules.
/usr/share/systemtap/tapset/
Holds the standard library of tapsets.
/usr/share/doc/packages/systemtap/examples
Holds several example SystemTap scripts for various purposes. Only available if the sys-
temtap-docs package is installed.
~/.systemtap/cache
Data directory for cached SystemTap les.
/tmp/stap*
Temporary directory for SystemTap les, including translated C code and kernel object.
For the classic SystemTap setup, install the following packages (using either YaST or zypper ).
systemtap
systemtap-server
systemtap-docs (optional)
kernel-*-base
kernel-*-debuginfo
kernel-*-devel
kernel-source-*
gcc
To get access to the man pages and to a helpful collection of example SystemTap scripts for
various purposes, additionally install the systemtap-docs package.
To check if all packages are correctly installed on the machine and if SystemTap is ready to use,
execute the following command as root .
It probes the currently used kernel by running a script and returning an output. If the output is
similar to the following, SystemTap is successfully deployed and ready to use:
Each probe has a corresponding statement block. This statement block must be enclosed in { }
and contains the statements to be executed per event.
probe 1 begin 2
{ 3
exit () 6
} 7
Synchronous events: Occur when any process executes an instruction at a particular loca-
tion in kernel code. This gives other events a reference point (instruction address) from
which more contextual data may be available.
An example for a synchronous event is vfs.FILE_OPERATION : The entry to the FILE_OP-
ERATION event for Virtual File System (VFS). For example, in Section 4.2, “Installation and
Setup”, read is the FILE_OPERATION event used for VFS.
Asynchronous events: Not tied to a particular instruction or location in code. This family
of probe points consists mainly of counters, timers, and similar constructs.
Examples for asynchronous events are: begin (start of a SystemTap session—when a Sys-
temTap script is run, end (end of a SystemTap session), or timer events. Timer events spec-
ify a handler to be executed periodically, like example timer.s(SECONDS) , or timer.m-
s(MILLISECONDS) .
When used together with other probes that collect information, timer events allow you to
print periodic updates and see how that information changes over time.
For example, the following probe would print the text “hello world” every 4 seconds:
probe timer.s(4)
{
printf("hello world\n")
}
For detailed information about supported events, refer to the stapprobes man page. The See
Also section of the man page also contains links to other man pages that discuss supported events
for specific subsystems and components.
4.3.3.1 Functions
If you need the same set of statements in multiple probes, you can place them in a function for
easy reuse. Functions are defined by the keyword function followed by a name. They take any
number of string or numeric arguments (by value) and may return a single string or number.
The statements in FUNCTION_NAME are executed when the probe for EVENT executes. The AR-
GUMENTS are optional values passed into the function.
Functions can be defined anywhere in the script. They may take any
One of the functions needed very often was already introduced in Example 4.1, “Simple SystemTap
Script”: the printf function for printing data in a formatted way. When using the printf
function, you can specify how arguments should be printed by using a format string. The format
string is included in quotation marks and can contain further format specifiers, introduced by
a % character.
Which format strings to use depends on your list of arguments. Format strings can have mul-
tiple format specifiers—each matching a corresponding argument. Multiple arguments can be
separated by a comma.
The example above prints the current executable name ( execname() ) as a string and the process
ID ( pid() ) as an integer in brackets. Then, a space, the word open and a line break follow:
[...]
vmware-guestd(2206) open
hald(2360) open
[...]
Apart from the two functions execname() and pid() ) used in Example 4.3, “printf Function with
Format Specifiers”, a variety of other functions can be used as printf arguments.
Among the most commonly used SystemTap functions are the following:
tid()
ID of the current thread.
pid()
Process ID of the current thread.
uid()
ID of the current user.
cpu()
Current CPU number.
execname()
Name of the current process.
gettimeofday_s()
Number of seconds since Unix epoch (January 1, 1970).
ctime()
Convert time into a string.
thread_indent()
Useful function for organizing print results. It (internally) stores an indentation counter for
each thread ( tid() ). The function takes one argument, an indentation delta, indicating
how many spaces to add or remove from the thread's indentation counter. It returns a string
with some generic trace data along with an appropriate number of indentation spaces.
The generic data returned includes a time stamp (number of microseconds since the initial
indentation for the thread), a process name, and the thread ID itself. This allows you to
identify what functions were called, who called them, and how long they took.
Call entries and exits often do not immediately precede each other (otherwise it would
be easy to match them). In between a rst call entry and its exit, usually other call en-
tries and exits are made. The indentation counter helps you match an entry with its corre-
sponding exit as it indents the next function call in case it is not the exit of the previous
one. For an example SystemTap script using thread_indent() and the respective out-
put, refer to the SystemTap Tutorial: http://sourceware.org/systemtap/tutorial/Tracing.htm-
l#fig:socket-trace .
For more information about supported SystemTap functions, refer to the stapfuncs man page.
4.3.3.2.1 Variables
Variables may be defined anywhere in the script. To define one, simply choose a name and
assign a value from a function or expression to it:
foo = gettimeofday( )
Then you can use the variable in an expression. From the type of values assigned to the variable,
SystemTap automatically infers the type of each identifier (string or number). Any inconsisten-
cies will be reported as errors. In the example above, foo would automatically be classified as
a number and could be printed via printf() with the integer format specifier ( %d ).
This example script computes the CONFIG_HZ setting of the kernel by using timers that
count jies and milliseconds, then computing accordingly. (A jiy is the duration of one
tick of the system timer interrupt. It is not an absolute time interval unit, since its duration
depends on the clock interrupt frequency of the particular hardware platform). With the
global statement it is possible to use the variables count_jiffies and count_ms also
in the probe timer.ms(12345) . With ++ the value of a variable is incremented by 1 .
There are several conditional statements that you can use in SystemTap scripts. The following
are probably the most common:
If/Else Statements
They are expressed in the following format:
if (CONDITION) 1 STATEMENT1 2
else 3 STATEMENT2 4
For Loops
They are a shortcut for while loops and are expressed in the following format:
The expression specified in 1 is used to initialize a counter for the number of loop iter-
ations and is executed before execution of the loop starts. The execution of the loop con-
tinues until the loop condition 2 is false. (This expression is checked at the beginning of
each loop iteration). The expression specified in 3 is used to increment the loop counter.
It is executed at the end of each loop iteration.
Conditional Operators
The following operators can be used in conditional statements:
==: Is equal to
#! /usr/bin/env stap
probe kernel.function("tcp_accept").return?,
kernel.function("inet_csk_accept").return? {
sock = $return
if (sock != 0)
printf("%6d %16s %6d %6d %16s\n", uid(), execname(), pid(),
inet_get_local_port(sock), inet_get_ip_source(sock))
}
This SystemTap script monitors the incoming TCP connections and helps to identify unautho-
rized or unwanted network access requests in real time. It shows the following information for
each new incoming TCP connection accepted by the computer:
User ID ( UID )
stap /usr/share/doc/packages/systemtap/examples/network/tcp_connections.stp
and follow the output on the screen. To manually stop the script, press Ctrl –C .
http://sourceware.org/systemtap/
SystemTap project home page.
http://sourceware.org/systemtap/wiki/
Huge collection of useful information about SystemTap, ranging from detailed user and de-
veloper documentation to reviews and comparisons with other tools, or Frequently Asked
Questions and tips. Also contains collections of SystemTap scripts, examples and usage
stories and lists recent talks and papers about SystemTap.
http://sourceware.org/systemtap/documentation.html
Features a SystemTap Tutorial, a SystemTap Beginner's Guide, a Tapset Developer's Guide, and
a SystemTap Language Reference in PDF and HTML format. Also lists the relevant man pages.
You can also nd the SystemTap language reference and SystemTap tutorial in your installed
system under /usr/share/doc/packages/systemtap . Example SystemTap scripts are avail-
able from the example subdirectory.
Debugging and status messages are typically reported with the printk kernel routine. printk
is a kernel space equivalent of a user space printf routine. For more information on printk ,
see Logging kernel messages (http://www.win.tue.nl/~aeb/linux/lk/lk-2.html#ss2.8) . Normally,
you can view these messages by inspecting the output of the systemd journal (see Book “Ad-
ministration Guide”, Chapter 16 “journalctl: Query the systemd Journal”). For more information
on log les, see Chapter 3, Analyzing and Managing System Log Files.
x86
AMD64/Intel 64
ARM
POWER
5.2.1 Kprobes
Kprobes can be attached to any instruction in the Linux kernel. When Kprobes is registered, it
inserts a break-point at the rst byte of the probed instruction. When the processor hits this
break-point, the processor registers are saved, and the processing passes to Kprobes. First, a pre-
handler is executed, then the probed instruction is stepped, and, finally a post-handler is executed.
The control is then passed to the instruction following the probe point.
5.2.2 Jprobes
Jprobes is implemented through the Kprobes mechanism. It is inserted on a function's entry
point and allows direct access to the arguments of the function which is being probed. Its handler
routine must have the same argument list and return value as the probed function. To end it,
call the jprobe_return() function.
When a jprobe is hit, the processor registers are saved, and the instruction pointer is directed
to the jprobe handler routine. The control then passes to the handler with the same register
contents as the function being probed. Finally, the handler calls the jprobe_return() function,
and switches the control back to the control function.
In general, you can insert multiple probes on one function. Jprobe is, however, limited to only
one instance per function.
register_kprobe()
Inserts a break-point on a specified address. When the break-point is hit, the pre_handler
and post_handler are called.
register_jprobe()
Inserts a break-point in the specified address. The address needs to be the address of the
rst instruction of the probed function. When the break-point is hit, the specified handler
is run. The handler should have the same argument list and return type as the probed.
register_kretprobe()
Inserts a return probe for the specified function. When the probed function returns, a
specified handler is run. This function returns 0 on success, or a negative error number
on failure.
The rst column lists the address in the kernel where the probe is inserted. The second column
prints the type of the probe: k for kprobe, j for jprobe, and r for return probe. The third column
specifies the symbol, offset and optional module name of the probe. The following optional
columns include the status information of the probe. If the probe is inserted on a virtual address
which is not valid anymore, it is marked with [GONE] . If the probe is temporarily disabled, it
is marked with [DISABLED] .
Note that this way you do not change the status of the probes. If a probe is temporarily disabled,
it will not be enabled automatically but will remain in the [DISABLED] state after entering the
latter command.
Thorough but more technically oriented information about kernel probes is in /usr/src/
linux/Documentation/kprobes.txt (package kenrel-source ).
Examples of all three types of probes (together with related Makefile ) are in the /usr/
src/linux/samples/kprobes/ directory (package kenrel-source ).
In-depth information about Linux kernel modules and printk kernel routine is in The
Linux Kernel Module Programming Guide (http://tldp.org/LDP/lkmpg/2.6/html/lkmpg.html)
Practical but slightly outdated information about the use of kernel probes can be
found in Kernel debugging with Kprobes (http://www.ibm.com/developerworks/library/l-
kprobes.html)
Code integrated into the Linux kernel that is responsible for instructing the hardware.
The perf user space utility that allows you to use the kernel code and helps you analyze
gathered data.
perf stat
Start a program and create a statistical overview that is displayed after the program quits.
perf stat is used to count events.
perf record
Start a program and create a report with performance counter information. The report is
stored as perf.data in the current directory. perf record is used to sample events.
perf report
Display a report that was previously created with perf record .
perf annotate
Display a report le and an annotated version of the executed code. If debug symbols are
installed, you will also see the source code displayed.
perf list
List event types that Perf can report with the current kernel and with your CPU. You can
filter event types by category—for example, to see hardware events only, use perf list
hw .
Sometimes, events may be ambiguous. Note that the lowercase hardware event names are
not the name of raw hardware events but instead the name of aliases created by Perf. These
aliases map to differently named but similarly defined hardware events on each supported
processor.
For example, the cpu-cycles event is mapped to the hardware event UNHALT-
ED_CORE_CYCLES on Intel processors. On AMD processors, however, it is mapped to the
hardware event CPU_CLK_UNHALTED .
Perf also allows measuring raw events specific to your hardware. To look up their descrip-
tions, see the Architecture Software Developer's Manual of your CPU vendor. The relevant
documents for AMD64/Intel 64 processors are linked to in Section 6.7, “For More Information”.
perf top
Display system activity as it happens.
perf trace
This command behaves similarly to strace . With this subcommand, you can see which
system calls are executed by a particular thread or process and which signals it receives.
To count multiple types of events at once, list them separated by commas. For example, to count
cpu-cycles and instructions , use:
Then, use the started process normally. When you quit the process, the Perf session will
also stop.
To create a report for the entire system while a newly invoked command is running, use:
Then, use the started process normally. When you quit the process, the Perf session will
also stop.
Replace PID with a process ID. To stop the session, press Ctrl –C .
This will open a pseudo-graphical interface. To receive help, press H . To quit, press Q .
If you prefer a graphical interface, try the GTK+ interface of Perf:
https://perf.wiki.kernel.org/index.php/Main_Page
The project home page. It also features a tutorial on using perf .
http://www.brendangregg.com/perf.html
Unofficial page with many one-line examples of how to use perf .
http://web.eece.maine.edu/~vweaver/projects/perf_events/
Unofficial page with several resources, mostly relating to the Linux kernel code of Perf and
its API. This page includes, for example, a CPU compatibility table and a programming
guide.
https://www-ssl.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-
architectures-software-developer-vol-3b-part-2-manual.pdf
The Intel Architectures Software Developer's Manual, Volume 3B.
https://support.amd.com/TechDocs/24593.pdf
The AMD Architecture Programmer's Manual, Volume 2.
It is useful to install the *-debuginfo package for the respective application you want to profile.
If you want to profile the kernel, you need the debuginfo package as well.
opannotate
Outputs annotated source or assembly listings mixed with profile information. An anno-
tated report can be used in combination with addr2line to identify the source le and
line where hotspots potentially exist. See man addr2line for more information.
opcontrol
Controls the profiling sessions (start or stop), dumps profile data, and sets up parameters.
ophelp
Lists available events with short descriptions.
opimport
Converts sample database les from a foreign binary format to the native format.
opreport
Generates reports from profiled data.
a. Profile With the Linux Kernel. Execute the following commands, because opcontrol
can only work with uncompressed images:
opcontrol --no-vmlinux
To see which functions call other functions in the output, additionally use the --
callgraph option and set a maximum DEPTH :
opcontrol --start
Using 2.6+ OProfile kernel interface.
Using log file /var/lib/oprofile/samples/oprofiled.log
Daemon started.
Profiler running.
opcontrol --stop
opcontrol --dump
7. Create a report:
opreport
Overflow stats not available
CPU: CPU with timer interrupt, speed 0 MHz (estimated)
Profiling through timer interrupt
TIMER:0|
samples| %|
opcontrol --shutdown
1. Use rst the events CPU-CLK_UNHALTED and INST_RETIRED to nd optimization oppor-
tunities.
2. Use specific events to nd bottlenecks. To list them, use the command opcontrol --
list-events .
If you need to profile certain events, rst check the available events supported by your processor
with the ophelp command (example output generated from Intel Core i5 CPU):
ophelp
oprofile: available events for CPU type "Intel Architectural Perfmon"
opcontrol --event=CPU_CLK_UNHALTED:100000
opannotate --source \
--base-dirs=BASEDIR \
--search-dirs= \
--output-dir=annotated/ \
/lib/libfoo.so
The option --base-dir contains a comma separated list of paths which is stripped from debug
source les. These paths were searched prior to looking in --search-dirs . The --search-
dirs option is also a comma separated list of directories to search for source les.
http://oprofile.sourceforge.net
The project home page.
Manpages
Details descriptions about the options of the different tools.
/usr/share/doc/packages/oprofile/oprofile.html
Contains the OProfile manual.
http://www-01.ibm.com/chips/techlib/techlib.nsf/productfamilies/PowerPC/
Architecture reference for PowerPC64 processors in IBM iSeries, pSeries, and Blade server
systems.
Tuning the system is not only about optimizing the kernel or getting the most out of
your application, it begins with setting up a lean and fast system. The way you set
up your partitions and le systems can influence the server's speed. The number of
active services and the way routine tasks are scheduled also affects performance.
8.1.1 Partitioning
Depending on the server's range of applications and the hardware layout, the partitioning
scheme can influence the machine's performance (although to a lesser extent only). It is beyond
the scope of this manual to suggest different partitioning schemes for particular workloads.
However, the following rules will positively affect performance. They do not apply when using
an external storage system.
Make sure there always is some free space available on the disk, since a full disk delivers
inferior performance
Disperse simultaneous read and write access onto different disks by, for example:
using separate disks for the operating system, data, and log les
X Window System
When solely administrating the server and its applications via command line, consider not
installing this pattern. However, keep in mind that it is needed to run GUI applications
from a remote machine. If your application is managed by a GUI or if you prefer the GUI
version of YaST, keep this pattern.
Print Server
This pattern is only needed if you want to print from the machine.
alsasound
Loads the Advanced Linux Sound System.
auditd
A daemon for the Audit system (see Book “Security Guide” for details). Disable this if you
do not use Audit.
bluez-coldplug
Handles cold plugging of Bluetooth dongles.
cups
A printer daemon.
java.binfmt_misc
Enables the execution of *.class or *.jar Java programs.
nfs
Services needed to mount NFS.
smbfs
Services needed to mount SMB/CIFS le systems from a Windows* server.
splash / splash_early
Shows the splash screen on start-up.
8.3.1.1 NFS
Idle
A process from the idle scheduling class is only granted disk access when no other process
has asked for disk I/O.
Best effort
The default scheduling class used for any process that has not asked for a specific I/O
priority. Priority within this class can be adjusted to a level from 0 to 7 (with 0 being the
highest priority). Programs running at the same best-effort priority are served in a round-
robin fashion. Some kernel versions treat priority within the best-effort class differently—
for details, refer to the ionice(1) man page.
Real-time
Processes in this class are always granted disk access rst. Fine-tune the priority level
from 0 to 7 (with 0 being the highest priority). Use with care, since it can starve other
processes.
For more details and the exact command syntax refer to the ionice(1) man page. If you need
more reliable control over bandwidth available to each application, use Kernel Control Groups
as described in Section 9.3, “Control Group Subsystems”.
Kernel Control Groups (abbreviated known as “cgroups”) are a kernel feature that
allows aggregating or partitioning tasks (processes) and all their children into hier-
archical organized groups. These hierarchical groups can be configured to show a
specialized behavior that helps with tuning the system to make best use of available
hardware and network resources.
In the following sections, we often reference kernel documentation such as /usr/
src/linux/Documentation/cgroups/ . These les are part of the kernel-source
package.
This chapter is an overview. To use cgroups properly and to avoid performance im-
plications, you must study the provided references.
In a cgroup there is a set of tasks (processes) associated with a set of subsystems that act
as parameters constituting an environment for the tasks.
Subsystems provide the parameters that can be assigned and define CPU sets, freezer, or
—more general—“resource controllers” for memory, disk I/O, network traffic, etc.
cgroups are organized in a tree-structured hierarchy. There can be more than one hierarchy
in the system. You use a different or alternate hierarchy to cope with specific situations.
Every task running in the system is in exactly one of the cgroups in the hierarchy.
CPUs Memory
System (20%)
CPU Set 1 (60%) CPU Set 2 (20%)
Students (30%)
Professors Students
Others (20%)
FIGURE 9.1: RESOURCE PLANNING
Web browsers such as Firefox will be part of the Web network class, while the NFS daemons such
as (k)nfsd will be part of the NFS network class. On the other side, Firefox will share appropriate
CPU and memory classes depending on whether a professor or student started it.
or all subsystems in one go; you can use an arbitrary device name (for example none ), which
will appear in /proc/mounts , for example:
net_cls (Identification)
The Network classifier cgroup helps with providing identification for controlling processes
such as Traffic Controller (tc) or Netfilter (iptables). These controller tools can act on
tagged network packets.
For more information, see /usr/src/linux/Documentation/cgroups/net_cls.txt .
net_prio (Identification)
The Network priority cgroup helps with setting the priority of network packets.
For more information, see /usr/src/linux/Documentation/cgroups/net_prio.txt .
devices (Isolation)
A system administrator can provide a list of devices that can be accessed by processes
under cgroups.
It limits access to a device or a le system on a device to only tasks that belong to the
specified cgroup. For more information, see /usr/src/linux/Documentation/cgroups/
devices.txt .
freezer (Control)
The freezer subsystem is useful for high-performance computing clusters (HPC clus-
ters). Use it to freeze (stop) all tasks in a group or to stop tasks, if they reach a de-
fined checkpoint. For more information, see /usr/src/linux/Documentation/cgroups/
freezer-subsystem.txt .
Here are basic commands to use the freezer subsystem:
perf_event (Control)
perf_event collects performance data.
cpuset (Isolation)
Use cpuset to tie processes to system subsets of CPUs and memory (“memory nodes”).
For an example, see Section 9.4.2, “Example: Cpusets”.
cpuacct (Accounting)
The CPU accounting controller groups tasks using cgroups and accounts the CPU usage
of these groups. For more information, see /usr/src/linux/Documentation/cgroups/
cpuacct.txt .
cpu (Control)
Share CPU bandwidth between groups with the group scheduling function of CFS (the
scheduler). Mechanically complicated.
# Setup in /sys/fs/cgroup
mkdir /sys/fs/cgroup/blkio
mount -t cgroup -o blkio none /sys/fs/cgroup/blkio
# Start two cgroups
mkdir -p /sys/fs/cgroup/blkio/group1 /sys/fs/cgroup/blkio/group2
# Set weights
echo 1000 > /sys/fs/cgroup/blkio/group1/blkio.weight
echo 500 > /sys/fs/cgroup/blkio/group2/blkio.weight
# Write the PIDs of the processes to be controlled to the
# appropriate groups
COMMAND1 &
echo $! > /sys/fs/cgroup/blkio/group1/tasks
COMMAND2 &
echo $! > /sys/fs/cgroup/blkio/group2/tasks
These are the basic commands to configure throttling or upper limit policy by setting val-
ues in blkio.throttle.read_bps_device for reads and blkio.throttle.write_bp-
s_device for writes:
# Setup in /sys/fs/cgroup
mkdir /sys/fs/cgroup/blkio
mount -t cgroup -o blkio none /sys/fs/cgroup/blkio
# Bandwidth rate of a device for the root group; format:
# <major>:<minor> <byes_per_second>
echo "8:16 1048576" > /sys/fs/cgroup/blkio/blkio.throttle.read_bps_device
For more information about caveats, usage scenarios, and additional parameters, see /
usr/src/linux/Documentation/cgroups/blkio-controller.txt .
9.4.1 Prerequisites
To conveniently use cgroups, install the following additional packages:
1. To determine the number of CPUs and memory nodes see /proc/cpuinfo and /proc/
zoneinfo .
rmdir /sys/fs/cgroup/cpuset/Charlie
cat /sys/fs/cgroup/cpuset/Charlie/tasks
2. Understanding cpu.shares:
3. Changing cpu.shares
group foo {
perm {
task {
uid = root;
gid = users;
fperm = 660;
}
admin {
uid = root;
gid = root;
fperm = 600;
dperm = 750;
}
}
}
mount {
cpu = /mnt/cgroups/cpu;
}
Then start the cgconfig service and stat /mnt/cgroups/cpu/foo/tasks which should show
the permissions mask 660 with root as an owner and users as a group. stat /mnt/cgroups/
cpu/foo/ should be 750 and all les (but tasks ) should have the mask 600 . Note that fperm
is applied on top of existing le permissions as a mask.
For more information, see the cgconfig.conf man page.
There are physical limitations to hardware that are encountered when many CPU
and lots of memory are required. In this chapter, the important limitation is that
there is limited communication bandwidth between the CPUs and the memory. One
architecture modification that was introduced to address this is Non-Uniform Mem-
ory Access (NUMA).
In this configuration, there are multiple nodes. Each of the nodes contains a subset
of all CPUs and memory. The access speed to main memory is determined by the lo-
cation of the memory relative to the CPU. The performance of a workload depends
on the application threads accessing data that is local to the CPU the thread is exe-
cuting on. Automatic NUMA Balancing is a new feature of SLE 12. Automatic NU-
MA Balancing migrates data on demand to memory nodes that are local to the CPU
accessing that data. Depending on the workload, this can dramatically boost perfor-
mance when using NUMA hardware.
10.1 Implementation
Automatic NUMA balancing happens in three basic steps:
1. A task scanner periodically scans a portion of a task's address space and marks the memory
to force a page fault when the data is next accessed.
2. The next access to the data will result in a NUMA Hinting Fault. Based on this fault, the
data can be migrated to a memory node associated with the task accessing the memory.
3. To keep a task, the CPU it is using and the memory it is accessing together, the scheduler
groups tasks that share data.
The unmapping of data and page fault handling incurs overhead. However, commonly the over-
head will be offset by threads accessing data associated with the CPU.
Automatic NUMA balancing can be enabled or disabled for the current session by writing 1
or 0 to /proc/sys/kernel/numa_balancing which will enable or disable the feature respec-
tively. To permanently enable or disable it, use the kernel command line option numa_balanc-
ing=[enabled|disabled] .
If Automatic NUMA Balancing is enabled, the task scanner behavior can be configured. The task
scanner balances the overhead of Automatic NUMA Balancing with the amount of time it takes
to identify the best placement of data.
numa_balancing_scan_delay_ms
The amount of CPU time a thread must consume before its data is scanned. This prevents
creating overhead because of short-lived processes.
numa_balancing_scan_size_mb
Controls how much address space is scanned when the task scanner is active.
10.3 Monitoring
The most important task is to assign metrics to your workload and measure the performance
with Automatic NUMA Balancing enabled and disabled to measure the impact. Profiling tools
can be used to monitor local and remote memory accesses if the CPU supports such monitoring.
Automatic NUMA Balancing activity can be monitored via the following parameters in /proc/
vmstat :
numa_pte_updates
The amount of base pages that were marked for NUMA hinting faults.
numa_huge_pte_updates
The amount of transparent huge pages that were marked for NUMA hinting faults. In
combination with numa_pte_updates the total address space that was marked can be
calculated.
numa_hint_faults
Records how many NUMA hinting faults were trapped.
numa_hint_faults_local
Shows how many of the hinting faults were to local nodes. In combination with numa_hin-
t_faults , the percentage of local versus remote faults can be calculated. A high percent-
age of local hinting faults indicates that the workload is closer to being converged.
numa_pages_migrated
Records how many pages were migrated because they were misplaced. As migration is
a copying operation, it contributes the largest part of the overhead created by NUMA
balancing.
Automatic NUMA Balancing simplifies tuning workloads for high performance on NUMA ma-
chines. Where possible, it is still recommended to statically tune the workload to partition it
within each node. However, in all other cases, automatic NUMA balancing should boost perfor-
mance.
Power management aims at reducing operating costs for energy and cooling systems
while at the same time keeping the performance of a system at a level that match-
es the current requirements. Thus, power management is always a matter of bal-
ancing the actual performance needs and power saving options for a system. Power
management can be implemented and used at different levels of the system. A set of
specifications for power management functions of devices and the operating system
interface to them has been defined in the Advanced Configuration and Power Inter-
face (ACPI). As power savings in server environments can primarily be achieved at
the processor level, this chapter introduces some main concepts and highlights some
tools for analyzing and influencing relevant parameters.
TABLE 11.1: C-STATES
Mode Definition
To avoid needless power consumption, it is recommended to test your workloads with deep sleep
states enabled versus deep sleep states disabled. For more information, refer to Section 11.3.2,
“Viewing Kernel Idle Statistics with cpupower” or the cpupower-idle-set(1) man page.
Performance Governor
The CPU frequency is statically set to the highest possible for maximum performance.
Consequently, saving power is not the focus of this governor.
See also Section 11.5.1, “Tuning Options for P-States”.
Powersave Governor
The CPU frequency is statically set to the lowest possible. This can have severe impact on
the performance, as the system will never rise above this frequency no matter how busy
the processors are. An important exception is the intel_pstate which defaults to the
powersave mode. This is due to a hardware-specific decision but functionally it operates
similarly to the on-demand governor.
On-demand Governor
The kernel implementation of a dynamic CPU frequency policy: The governor monitors the
processor usage. When it exceeds a certain threshold, the governor will set the frequency
to the highest available. If the usage is less than the threshold, the next lowest frequency
is used. If the system continues to be underemployed, the frequency is again reduced until
the lowest available frequency is set.
Analyzing CPU 0:
Number of idle states: 6
Available idle states: POLL C1-SNB C1E-SNB C3-SNB C6-SNB C7-SNB
POLL:
Flags/Description: CPUIDLE CORE POLL IDLE
After finding out which processor idle states are supported with cpupower idle-info , indi-
vidual states can be disabled using the cpupower idle-set command. Typically one wants to
disable the deepest sleep state, for example:
cpupower idle-set -d 5
Or, for disabling all CPUs with latencies equal to or higher than 80 :
cpupower idle-set -D 80
118 Monitoring Kernel and Hardware Statistics with cpupower SLED 12 SP3
implemented in the tool—some retrieved from kernel statistics, others reading out hardware
registers. The available monitors depend on the underlying hardware and the system. List them
with cpupower monitor -l . For a description of the individual monitors, refer to the cpupow-
er-monitor man page.
The monitor subcommand allows you to execute performance benchmarks. To compare kernel
statistics with hardware statistics for specific workloads, concatenate the respective command,
for example:
1 Mperf shows the average frequency of a CPU, including boost frequencies, over time.
Additionally, it shows the percentage of time the CPU has been active ( C0 ) or in any
sleep state ( Cx ). As the turbo states are managed by the BIOS, it is impossible to get
the frequency values at a given instant. On modern processors with turbo features
the Mperf monitor is the only way to nd out about the frequency a certain CPU has
been running in.
2 Idle_Stats shows the statistics of the cpuidle kernel subsystem. The kernel updates
these values every time an idle state is entered or left. Therefore there can be some
inaccuracy when cores are in an idle state for some time when the measure starts
or ends.
Apart from the (general) monitors in the example above, other architecture-specific mon-
itors are available. For detailed information, refer to the cpupower-monitor man page.
By comparing the values of the individual monitors, you can nd correlations and dependen-
cies and evaluate how well the power saving mechanism works for a certain workload. In Exam-
ple 11.3 you can see that CPU 0 is idle (the value of Cx is near 100%), but runs at a very high
frequency. This is because the CPUs 0 and 1 have the same frequency values which means that
there is a dependency between them.
119 Monitoring Kernel and Hardware Statistics with cpupower SLED 12 SP3
11.3.4 Modifying Current Settings with cpupower
You can use cpupower frequency-set command as root to modify current settings. It allows
you to set values for the minimum or maximum CPU frequency the governor may select or to
create a new governor. With the -c option, you can also specify for which of the processors the
settings should be modified. That makes it easy to use a consistent policy across all processors
without adjusting the settings for each processor individually. For more details and the available
options, refer to the cpupower-freqency-set man page or run cpupower frequency-set
--help .
[...]
1 The column shows the C-states. When working, the CPU is in state 0 , when resting it is
in some state greater than 0 , depending on which C-states are available and how deep
the CPU is sleeping.
2 The column shows average time in milliseconds spent in the particular C-state.
3 The column shows the percentages of time spent in various C-states. For considerable power
savings during idle, the CPU should be in deeper C-states most of the time. In addition, the
longer the average time spent in these C-states, the more power is saved.
4 The column shows the frequencies the processor and kernel driver support on your system.
5 The column shows the amount of time the CPU cores stayed in different frequencies during
the measuring period.
6 Shows how often the CPU is awoken per second (number of interrupts). The lower the
number, the better. The interval value is the powerTOP refresh interval which can be
controlled with the -t option. The default time to gather data is 5 seconds.
7 When running powerTOP on a laptop, this line displays the ACPI information on how much
power is currently being used and the estimated time until discharge of the battery. On
servers, this information is not available.
8 Shows what is causing the system to be more active than needed. powerTOP displays the
top items causing your CPU to awake during the sampling period.
9 Suggestions on how to improve power usage for this machine.
To set values for the minimum or maximum CPU frequency the governor may select, use the
-d or -u option, respectively.
11.6 Troubleshooting
BIOS options enabled?
To use C-states or P-states, check your BIOS options:
To use C-states, make sure to enable CPU C State or similar options to benefit from
power savings at idle.
To use P-states and the CPUfreq governors, make sure to enable Processor Per-
formance States options or similar.
Even if P-states and C-states are available, it is possible that the platform rmware is
managing CPU frequencies which may be sub-optimal. For example, if pcc-cpufreq
is loaded then the OS is only giving hints to the rmware, which is free to ignore
the hints. This can be addressed by selecting "OS Management" or similar for CPU
frequency managed in the BIOS. After reboot, an alternative driver will be used but
the performance impact should be carefully measured.
In case of a CPU upgrade, make sure to upgrade your BIOS, too. The BIOS needs to know
the new CPU and its frequency stepping to pass this information on to the operating system.
This will cause CPUfreq to log more information to dmesg on state transitions, which is
useful for diagnosis. But as this additional output of kernel messages can be rather com-
prehensive, use it only if you are fairly sure that a problem exists.
I/O scheduling controls how input/output operations will be submitted to storage. SUSE Linux
Enterprise Desktop offers various I/O algorithms—called elevators —suiting different work-
loads. Elevators can help to reduce seek operations and can prioritize I/O requests.
Choosing the best suited I/O elevator not only depends on the workload, but on the hardware,
too. Single ATA disk systems, SSDs, RAID arrays, or network storage systems, for example, each
require different tuning strategies.
elevator=SCHEDULER
Replace SCHEDULER with one of the values cfq , noop , or deadline . See Section 12.2, “Available
I/O Elevators” for details.
To change the elevator for a specific device in the running system, run the following command:
Here, SCHEDULER is one of cfq , noop , or deadline . DEVICE is the block device ( sda for
example). Note that this change will not persist during reboot. For permanent I/O scheduler
change for a particular device either place the command switching the I/O scheduler into init
scripts or add appropriate udev rule into /lib/udev/rules.d/ . See /lib/udev/rules.d/60-
ssd-scheduler.rules for an example of such tuning.
where VALUE is the desired value for the TUNABLE and DEVICE the block device.
To nd out which elevator is the current default, run the following command. The currently
selected scheduler is listed in brackets:
This le can also contain the string none meaning that I/O scheduling does not happen for
this device. This is usually because the device uses multi-queue queueing mechanism (refer to
Section 12.4, “Enable blk-mq I/O Path for SCSI by Default”).
/sys/block/DEVICE/queue/iosched/slice_idle_us
When a task has no more I/O to submit in its time slice, the I/O scheduler waits for a while
before scheduling the next thread. The slice_idle_us is the time in microseconds the
I/O scheduler waits. File slice_idle controls the same tunable but in millisecond units.
Waiting for more I/O from a thread can improve locality of I/O. Additionally, it avoids
starving processes doing dependent I/O. A process does dependent I/O if it needs a result
of one I/O to submit another I/O. For example, if you rst need to read an index block to
nd out a data block to read, these two reads form a dependent I/O.
For media where locality does not play a big role (SSDs, SANs with lots of disks) setting /
sys/block/<device>/queue/iosched/slice_idle_us to 0 can improve the throughput
considerably.
/sys/block/DEVICE/queue/iosched/low_latency
When enabled (which is the default on SUSE Linux Enterprise Desktop) the scheduler may
dynamically adjust the length of the time slice by aiming to meet a tuning parameter
called the target_latency . Time slices are recomputed to meet this target_latency
and ensure that processes get fair access within a bounded length of time.
/sys/block/DEVICE/queue/iosched/target_latency
Contains an estimated latency time for the CFQ . CFQ will use it to calculate the time slice
used for every task.
/sys/block/DEVICE/queue/iosched/group_idle_us
To avoid starving of blkio cgroups doing dependent I/O, CFQ waits a bit after comple-
tion of I/O for one blkio cgroup before scheduling I/O for a different blkio cgroup. When
slice_idle_us is set, this parameter does not have a big impact. However, for fast media,
the overhead of slice_idle_us is generally undesirable. Disabling slice_idle_us and
setting group_idle_us is a method to avoid starvation of blkio cgroups doing dependent
I/O with lower overhead. Note that the le group_idle controls the same tunable how-
ever with millisecond granularity.
In SUSE Linux Enterprise Desktop 12 SP3, the low_latency tuning parameter is enabled
by default to ensure that processes get fair access within a bounded length of time. (Note
that this parameter was not enabled in versions prior to SUSE Linux Enterprise 12.)
If a workload must complete as quickly as possible and there are multiple sources of
I/O. In this case, unfair treatment from the I/O scheduler may allow the transactions
to complete faster: Processes take their full slice and exit quickly, resulting in reduced
overall contention.
real 0m4.978s
user 0m0.112s
sys 0m1.544s
Note that each process completes in similar times. This is the CFQ scheduler meeting its
target_latency : Each process has fair access to storage.
Note that the earlier processes complete somewhat faster. This happens because the start
time of the processes is not identical. In a more complicated example, it is possible to
control for this.
This is what happens when low_latency is disabled:
real 0m3.505s
user 0m0.160s
sys 0m1.516s
Note that the time processes take to complete is spread much wider as processes are not
getting fair access. Some processes complete faster and exit, allowing the total workload
to complete faster, and some processes measure higher apparent I/O performance. It is
also important to note that this example may not behave similarly on all systems as the
results depend on the resources of the machine and the underlying storage.
It is important to emphasize that neither tuning option is inherently better than the other.
Both are best in different circumstances and it is important to understand the requirements
of your workload and tune accordingly.
12.2.2 NOOP
A trivial scheduler that only passes down the I/O that comes to it. Useful for checking whether
complex I/O scheduling decisions of other schedulers are causing I/O performance regressions.
This scheduler is recommended for setups with devices that do I/O scheduling themselves, such
as intelligent storage or in multipathing environments. If you choose a more complicated sched-
uler on the host, the scheduler of the host and the scheduler of the storage device compete with
each other. This can decrease performance. The storage device can usually determine best how
to schedule I/O.
For similar reasons, this scheduler is also recommended for use within virtual machines.
12.2.3 DEADLINE
DEADLINE is a latency-oriented I/O scheduler. Each I/O request is assigned a deadline. Usual-
ly, requests are stored in queues (read and write) sorted by sector numbers. The DEADLINE
algorithm maintains two additional queues (read and write) in which requests are sorted by
deadline. As long as no request has timed out, the “sector” queue is used. When timeouts occur,
requests from the “deadline” queue are served until there are no more expired requests. Gener-
ally, the algorithm prefers reads over writes.
This scheduler can provide a superior throughput over the CFQ I/O scheduler in cases where
several threads read and write and fairness is not an issue. For example, for several parallel
readers from a SAN and for databases (especially when using “TCQ” disks). The DEADLINE
scheduler has the following tunable parameters:
/sys/block/<device>/queue/iosched/writes_starved
Controls how many reads can be sent to disk before it is possible to send writes. A value
of 3 means, that three read operations are carried out for one write operation.
/sys/block/<device>/queue/iosched/read_expire
Sets the deadline (current time plus the read_expire value) for read operations in millisec-
onds. The default is 500.
/sys/block/<device>/queue/iosched/write_expire
/sys/block/<device>/queue/iosched/read_expire Sets the deadline (current time
plus the read_expire value) for read operations in milliseconds. The default is 500.
132 Enable blk-mq I/O Path for SCSI by Default SLED 12 SP3
13 Tuning the Task Scheduler
Modern operating systems, such as SUSE® Linux Enterprise Desktop, normally run many tasks
at the same time. For example, you can be searching in a text le while receiving an e-mail
and copying a big le to an external hard disk. These simple tasks require many additional
processes to be run by the system. To provide each task with its required system resources, the
Linux kernel needs a tool to distribute available system resources to individual tasks. And this
is exactly what the task scheduler does.
The following sections explain the most important terms related to a process scheduling. They
also introduce information about the task scheduler policy, scheduling algorithm, description
of the task scheduler used by SUSE Linux Enterprise Desktop, and references to other sources
of relevant information.
13.1 Introduction
The Linux kernel controls the way that tasks (or processes) are managed on the system. The
task scheduler, sometimes called process scheduler, is the part of the kernel that decides which
task to run next. It is responsible for best using system resources to guarantee that multiple
tasks are being executed simultaneously. This makes it a core component of any multitasking
operating system.
13.1.1 Preemption
The theory behind task scheduling is very simple. If there are runnable processes in a system, at
least one process must always be running. If there are more runnable processes than processors
in a system, not all the processes can be running all the time.
Therefore, some processes need to be stopped temporarily, or suspended, so that others can be
running again. The scheduler decides what process in the queue will run next.
As already mentioned, Linux, like all other Unix variants, is a multitasking operating system. That
means that several tasks can be running at the same time. Linux provides a so called preemptive
multitasking, where the scheduler decides when a process is suspended. This forced suspension
is called preemption. All Unix flavors have been providing preemptive multitasking since the
beginning.
I/O-bound
I/O stands for Input/Output devices, such as keyboards, mice, or optical and hard disks.
I/O-bound processes spend the majority of time submitting and waiting for requests. They
are run very frequently, but for short time intervals, not to block other processes waiting
for I/O requests.
processor-bound
On the other hand, processor-bound tasks use their time to execute a code, and usually run
until they are preempted by the scheduler. They do not block processes waiting for I/O
requests, and, therefore, can be run less frequently but for longer time intervals.
Another approach is to divide processes by type into interactive, batch, and real-time processes.
Batch processes often run in the background and do not need to be responsive. They usually
receive lower priority from the scheduler. Multimedia converters, database search engines,
or log les analyzers are typical examples of batch processes.
Real-time processes must never be blocked by low-priority processes, and the scheduler
guarantees a short response time to them. Applications for editing multimedia content are
a good example here.
Group Scheduling
For example, if you split processes into groups according to which user is running them,
CFS tries to provide each of these groups with the same amount of processor time.
As a result, CFS brings optimized scheduling for both servers and desktops.
13.3.4 Terminology
Documents regarding task scheduling policy often use several technical terms which you need
to know to understand the information correctly. Here are some:
Latency
Delay between the time a process is scheduled to run and the actual process execution.
Granularity
The relation between granularity and latency can be expressed by the following equation:
where gran stands for granularity, lat stand for latency, and rtasks is the number of running
tasks.
SCHED_FIFO
Scheduling policy designed for special time-critical applications. It uses the First In-First
Out scheduling algorithm.
SCHED_BATCH
Scheduling policy designed for CPU-intensive tasks.
SCHED_IDLE
Scheduling policy intended for very low prioritized tasks.
SCHED_OTHER
Default Linux time-sharing scheduling policy used by the majority of processes.
SCHED_RR
Similar to SCHED_FIFO , but uses the Round Robin scheduling algorithm.
Before setting a new scheduling policy on the process, you need to nd out the minimum and
maximum valid priorities for each scheduling algorithm:
root # chrt -m
SCHED_SCHED_OTHER min/max priority : 0/0
SCHED_SCHED_FIFO min/max priority : 1/99
SCHED_SCHED_RR min/max priority : 1/99
SCHED_SCHED_BATCH min/max priority : 0/0
SCHED_SCHED_IDLE min/max priority : 0/0
In the above example, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE polices only allow for pri-
ority 0, while that of SCHED_FIFO and SCHED_RR can range from 1 to 99.
To set SCHED_BATCH scheduling policy:
For more information on chrt , see its man page ( man 1 chrt ).
sysctl VARIABLE
sysctl VARIABLE=VALUE
Note that variables ending with “_ns” and “_us” accept values in nanoseconds and microseconds,
respectively.
A list of the most important task scheduler sysctl tuning variables (located at /proc/sys/
kernel/ ) with a short description follows:
sched_cfs_bandwidth_slice_us
When CFS bandwidth control is in use, this parameter controls the amount of run-time
(bandwidth) transferred to a run queue from the task's control group bandwidth pool.
Small values allow the global bandwidth to be shared in a ne-grained manner among
tasks, larger values reduce transfer overhead. See https://www.kernel.org/doc/Documenta-
tion/scheduler/sched-bwc.txt .
sched_child_runs_first
A freshly forked child runs before the parent continues execution. Setting this parameter
to 1 is beneficial for an application in which the child performs an execution after fork.
For example make -j<NO_CPUS> performs better when sched_child_runs_first is turned
o. The default value is 0 .
sched_migration_cost_ns
Amount of time after the last execution that a task is considered to be “cache hot” in
migration decisions. A “hot” task is less likely to be migrated to another CPU, so increasing
this variable reduces task migrations. The default value is 500000 (ns).
If the CPU idle time is higher than expected when there are runnable processes, try reduc-
ing this value. If tasks bounce between CPUs or nodes too often, try increasing it.
sched_latency_ns
Targeted preemption latency for CPU bound tasks. Increasing this variable increases a CPU
bound task's timeslice. A task's timeslice is its weighted fair share of the scheduling period:
timeslice = scheduling period * (task's weight/total weight of tasks in the run queue)
The task's weight depends on the task's nice level and the scheduling policy. Minimum
task weight for a SCHED_OTHER task is 15, corresponding to nice 19. The maximum task
weight is 88761, corresponding to nice -20.
Timeslices become smaller as the load increases. When the number of runnable
tasks exceeds sched_latency_ns / sched_min_granularity_ns , the slice becomes num-
ber_of_running_tasks * sched_min_granularity_ns . Prior to that, the slice is equal to
sched_latency_ns .
This value also specifies the maximum amount of time during which a sleeping task is
considered to be running for entitlement calculations. Increasing this variable increases
the amount of time a waking task may consume before being preempted, thus increasing
scheduler latency for CPU bound tasks. The default value is 6000000 (ns).
sched_min_granularity_ns
Minimal preemption granularity for CPU bound tasks. See sched_latency_ns for details.
The default value is 4000000 (ns).
sched_rr_timeslice_ms
Quantum that SCHED_RR tasks are allowed to run before they are preempted and put to
the end of the task list.
sched_rt_period_us
Period over which real-time task bandwidth enforcement is measured. The default value
is 1000000 (µs).
sched_rt_runtime_us
Quantum allocated to real-time tasks during sched_rt_period_us. Setting to -1 disables RT
bandwidth enforcement. By default, RT tasks may consume 95%CPU/sec, thus leaving
5%CPU/sec or 0.05s to be used by SCHED_OTHER tasks. The default value is 950000 (µs).
sched_nr_migrate
Controls how many tasks can be migrated across processors for load-balancing purposes.
Because balancing iterates the runqueue with interrupts disabled (softirq), it can incur
in irq-latency penalties for real-time tasks. Therefore increasing this value may give a
performance boost to large SCHED_OTHER threads at the expense of increased irq-latencies
for real-time tasks. The default value is 32 .
sched_time_avg_ms
This parameter sets the period over which the time spent running real-time tasks is aver-
aged. That average assists CFS in making load-balancing decisions and gives an indication
of how busy a CPU is with high-priority real-time tasks.
The optimal setting for this parameter is highly workload dependent and depends, among
other things, on how frequently real-time tasks are running and for how long.
/proc/sched_debug
Contains the current values of all tunable variables (see Section 13.3.6, “Runtime Tuning with
sysctl”) that affect the task scheduler behavior, CFS statistics, and information about the
run queues (CFS, RT and deadline) on all available processors. A summary of the task
running on each processor is also shown, with the task name and PID, along with scheduler
specific statistics. The rst being tree-key column, it indicates the task's virtual runtime,
and its name comes from the kernel sorting all runnable tasks by this key in a red-black
tree. The switches column indicates the total number of switches (involuntary or not),
and naturally the prio refers to the process priority. The wait-time value indicates
the amount of time the task waited to be scheduled. Finally both sum-exec and sum-
sleep account for the total amount of time (in nanoseconds) the task was running on the
processor or asleep, respectively.
sysctl_sched
.sysctl_sched_latency : 6.000000
.sysctl_sched_min_granularity : 2.000000
.sysctl_sched_wakeup_granularity : 2.500000
.sysctl_sched_child_runs_first : 0
.sysctl_sched_features : 154871
.sysctl_sched_tunable_scaling : 1 (logaritmic)
cfs_rq[0]:/
.exec_clock : 170176.383770
rt_rq[0]:/
.rt_nr_running : 0
.rt_throttled : 0
.rt_time : 0.000000
.rt_runtime : 950.000000
dl_rq[0]:
.dl_nr_running : 0
/proc/schedstat
Displays statistics relevant to the current run queue. Also domain-specific statistics for
SMP systems are displayed for all connected processors. Because the output format is not
user-friendly, read the contents of /usr/src/linux/Documentation/scheduler/sched-
stats.txt for more information.
/proc/PID/sched
Displays scheduling information on the process with id PID .
For task scheduler System Calls description, see the relevant manual page (for example
man 2 sched_setaffinity ).
A very comprehensive overview of the Linux kernel internals is given in Understanding the
Linux Kernel by Daniel P. Bovet and Marco Cesati (ISBN 978-0-596-00565-8).
To understand and tune the memory management behavior of the kernel, it is important to rst
have an overview of how it works and cooperates with other subsystems.
The memory management subsystem, also called the virtual memory manager, will subsequently
be called “VM”. The role of the VM is to manage the allocation of physical memory (RAM)
for the entire kernel and user programs. It is also responsible for providing a virtual memory
environment for user processes (managed via POSIX APIs with Linux extensions). Finally, the
VM is responsible for freeing up RAM when there is a shortage, either by trimming caches or
swapping out “anonymous” memory.
The most important thing to understand when examining and tuning VM is how its caches
are managed. The basic goal of the VM's caches is to minimize the cost of I/O as generated
by swapping and le system operations (including network le systems). This is achieved by
avoiding I/O completely, or by submitting I/O in better patterns.
Free memory will be used and lled up by these caches as required. The more memory is avail-
able for caches and anonymous memory, the more effectively caches and swapping will oper-
ate. However, if a memory shortage is encountered, caches will be trimmed or memory will
be swapped out.
For a particular workload, the rst thing that can be done to improve performance is to increase
memory and reduce the frequency that memory must be trimmed or swapped. The second thing
is to change the way caches are managed by changing kernel parameters.
Finally, the workload itself should be examined and tuned as well. If an application is allowed
to run more processes or threads, effectiveness of VM caches can be reduced, if each process is
operating in its own area of the le system. Memory overheads are also increased. If applications
allocate their own buers or caches, larger caches will mean that less memory is available for
VM caches. However, more processes and threads can mean more opportunity to overlap and
pipeline I/O, and may take better advantage of multiple cores. Experimentation will be required
for the best results.
14.1.2 Pagecache
A cache of le data. When a le is read from disk or network, the contents are stored in page-
cache. No disk or network access is required, if the contents are up-to-date in pagecache. tmpfs
and shared memory segments count toward pagecache.
When a le is written to, the new data is stored in pagecache before being written back to a
disk or the network (making it a write-back cache). When a page has new data not written back
yet, it is called “dirty”. Pages not classified as dirty are “clean”. Clean pagecache pages can be
reclaimed if there is a memory shortage by simply freeing them. Dirty pages must rst be made
clean before being reclaimed.
14.1.3 Buffercache
This is a type of pagecache for block devices (for example, /dev/sda). A le system typically uses
the buffercache when accessing its on-disk metadata structures such as inode tables, allocation
bitmaps, and so forth. Buffercache can be reclaimed similarly to pagecache.
14.1.5 Writeback
As applications write to les, the pagecache becomes dirty and the buffercache may be-
come dirty. When the amount of dirty memory reaches a specified number of pages in bytes
(vm.dirty_background_bytes), or when the amount of dirty memory reaches a specific ratio to total
14.1.6 Readahead
The VM monitors le access patterns and may attempt to perform readahead. Readahead reads
pages into the pagecache from the le system that have not been requested yet. It is done to
allow fewer, larger I/O requests to be submitted (more efficient). And for I/O to be pipelined
(I/O performed at the same time as the application is running).
This is an in-memory cache of the inode structures for each le system. These contain attributes
such as the le size, permissions and ownership, and pointers to the le data.
This is an in-memory cache of the directory entries in the system. These contain a name (the
name of a le), the inode which it refers to, and children entries. This cache is used when
traversing the directory structure and accessing a le by name.
/proc/sys/vm/swappiness
This control is used to define how aggressively the kernel swaps out anonymous memo-
ry relative to pagecache and other caches. Increasing the value increases the amount of
swapping. The default value is 60 .
Swap I/O tends to be much less efficient than other I/O. However, some pagecache pages
will be accessed much more frequently than less used anonymous memory. The right bal-
ance should be found here.
If swap activity is observed during slowdowns, it may be worth reducing this parameter.
If there is a lot of I/O activity and the amount of pagecache in the system is rather small,
or if there are large dormant applications running, increasing this value might improve
performance.
Note that the more data is swapped out, the longer the system will take to swap data back
in when it is needed.
/proc/sys/vm/vfs_cache_pressure
This variable controls the tendency of the kernel to reclaim the memory which is used for
caching of VFS caches, versus pagecache and swap. Increasing this value increases the rate
at which VFS caches are reclaimed.
It is difficult to know when this should be changed, other than by experimentation. The
slabtop command (part of the package procps ) shows top memory objects used by
the kernel. The vfs caches are the "dentry" and the "*_inode_cache" objects. If these are
consuming a large amount of memory in relation to pagecache, it may be worth trying to
increase pressure. Could also help to reduce swapping. The default value is 100 .
/proc/sys/vm/watermark_scale_factor
Broadly speaking, free memory has high, low and min watermarks. When the low water-
mark is reached then kswapd wakes to reclaim memory in the background. It stays awake
until free memory reaches the high watermark. Applications will stall and reclaim memory
when the low watermark is reached.
The watermark_scale_factor defines the amount of memory left in a node/system be-
fore kswapd is woken up and how much memory needs to be free before kswapd goes back
to sleep. The unit is in fractions of 10,000. The default value of 10 means the distances
between watermarks are 0.1% of the available memory in the node/system. The maximum
value is 1000, or 10% of memory.
Workloads that frequently stall in direct reclaim, accounted by allocstall in /proc/
vmstat , may benefit from altering this parameter. Similarly, if kswapd is sleeping prema-
turely, as accounted for by kswapd_low_wmark_hit_quickly , then it may indicate that
the number of pages kept free to avoid stalls is too low.
/proc/sys/vm/dirty_background_bytes
This contains the amount of dirty memory at which the background kernel flusher threads
will start writeback. dirty_background_bytes is the counterpart of dirty_back-
ground_ratio . If one of them is set, the other one will automatically be read as 0 .
/proc/sys/vm/dirty_ratio
Similar percentage value as for dirty_background_ratio . When this is exceeded, appli-
cations that want to write to the pagecache are blocked and wait for kernel background
flusher threads to reduce the amount of dirty memory. The default value is 20 (%).
/proc/sys/vm/dirty_bytes
This le controls the same tunable as dirty_ratio however the amount of dirty memory
is in bytes as opposed to a percentage of reclaimable memory. Since both dirty_ratio
and dirty_bytes control the same tunable, if one of them is set, the other one will auto-
matically be read as 0 . The minimum value allowed for dirty_bytes is two pages (in
bytes); any value lower than this limit will be ignored and the old configuration will be
retained.
/proc/sys/vm/dirty_expire_centisecs
Data which has been dirty in-memory for longer than this interval will be written out next
time a flusher thread wakes up. Expiration is measured based on the modification time
of a le's inode. Therefore, multiple dirtied pages from the same le will all be written
when the interval is exceeded.
SLE-11-SP3: vm.dirty_ratio = 40
SLE-12: vm.dirty_ratio = 20
The primary advantage of using the lower ratio in SUSE Linux Enterprise 12 is that page recla-
mation and allocation in low memory situations completes faster as there is a higher probability
that old clean pages will be quickly found and discarded. The secondary advantage is that if
all data on the system must be synchronized, then the time to complete the operation on SUSE
Linux Enterprise 12 will be lower than SUSE Linux Enterprise 11 SP3 by default. Most workloads
will not notice this change as data is synchronized with fsync() by the application or data is
not dirtied quickly enough to hit the limits.
There are exceptions and if your application is affected by this, it will manifest as an unex-
pected stall during writes. To prove it is affected by dirty data rate limiting then monitor /
proc/PID_OF_APPLICATION/stack and it will be observed that the application spends signifi-
cant time in balance_dirty_pages_ratelimited . If this is observed and it is a problem, then
increase the value of vm.dirty_ratio to 40 to restore the SUSE Linux Enterprise 11 SP3 be-
havior.
It is important to note that the overall I/O throughput is the same regardless of the setting. The
only difference is the timing of when the I/O is queued.
This is an example of using dd to asynchronously write 30% of memory to disk which would
happen to be affected by the change in vm.dirty_ratio :
Timing Differences of I/O Writes between SUSE Linux Enterprise 12 and SUSE Linux Enterprise
Note that dirty_ratio had almost no impact here and is within the natural variability of a
command. Hence, dirty_ratio does not directly impact I/O performance but it may affect the
apparent performance of a workload that writes data asynchronously without synchronizing.
/sys/block/<bdev>/queue/read_ahead_kb
If one or more processes are sequentially reading a le, the kernel reads some data in
advance (ahead) to reduce the amount of time that processes need to wait for data to be
available. The actual amount of data being read in advance is computed dynamically, based
on how much "sequential" the I/O seems to be. This parameter sets the maximum amount
of data that the kernel reads ahead for a single le. If you observe that large sequential
reads from a le are not fast enough, you can try increasing this value. Increasing it too
far may result in readahead thrashing where pagecache used for readahead is reclaimed
before it can be used, or slowdowns because of a large amount of useless I/O. The default
value is 512 (KB).
If disabled, the value never is shown in square brackets like in the example above. A value of
always will always try and use THP at fault time but defer to khugepaged if the allocation
fails. A value of madvise will only allocate THP for address spaces explicitly specified by an
application.
/sys/kernel/mm/transparent_hugepage/defrag
This parameter controls how much effort an application commits when allocating a THP.
A value of always is the default for SUSE Linux Enterprise 12 SP1 and earlier releases that
supported THP. If a THP is not available, the application will try to defragment memory.
It potentially incurs large stalls in an application if the memory is fragmented and a THP
is not available.
A value of madvise means that THP allocation requests will only defragment if the ap-
plication explicitly requests it. This is the default for SUSE Linux Enterprise 12 SP2 and
later releases.
defer is only available on SUSE Linux Enterprise 12 SP2 and later releases. If a THP is
not available, the application will fall back to using small pages if a THP is not available.
It will wake the kswapd and kcompactd kernel threads to defragment memory in the
background and a THP will be allocated later by khugepaged .
The final option never will use small pages if a THP is unavailable but no other action
will take place.
/sys/kernel/mm/transparent_hugepage/khugepaged/defrag
A value of 0 will disable khugepaged even though THP may still be used at fault time.
This may be important for latency-sensitive applications that benefit from THP but cannot
tolerate a stall if khugepaged tries to update an application memory usage.
/sys/kernel/mm/transparent_hugepage/khugepaged/pages_to_scan
This parameter controls how many pages are scanned by khugepaged in a single pass.
A scan identifies small pages that can be reallocated as THP. Increasing this value will
allocate THP in the background faster at the cost of CPU usage.
/sys/kernel/mm/transparent_hugepage/khugepaged/scan_sleep_millisecs
khugepaged sleeps for a short interval specified by this parameter after each pass to limit
how much CPU usage is used. Reducing this value will allocate THP in the background
faster at the cost of CPU usage. A value of 0 will force continual scanning.
/sys/kernel/mm/transparent_hugepage/khugepaged/alloc_sleep_millisecs
This parameter controls how long khugepaged will sleep in the event it fails to allocate a
THP in the background waiting for kswapd and kcompactd to take action.
The remaining parameters for khugepaged are rarely useful for performance tuning but are
fully documented in /usr/src/linux/Documentation/vm/transhuge.txt
1. vmstat: This tool gives a good overview of what the VM is doing. See Section 2.1.1, “vmstat”
for details.
2. /proc/meminfo : This le gives a detailed breakdown of where memory is being used. See
Section 2.4.2, “Detailed Memory Usage: /proc/meminfo” for details.
3. slabtop : This tool provides detailed information about kernel slab memory usage.
buer_head, dentry, inode_cache, ext3_inode_cache, etc. are the major caches. This com-
mand is available with the package procps .
4. /proc/vmstat : This le gives a detailed breakdown of internal VM behaviour. The in-
formation contained within is implementation specific and may not always be available.
Some information is duplicated in /proc/meminfo and other can be presented in a friend-
ly fashion by utilities. For maximum utility, this le needs to be monitored over time to
observe rates of change. The most important pieces of information that are hard to derive
from other sources are as follows:
pgscan_kswapd_*, pgsteal_kswapd_*
These report respectively the number of pages scanned and reclaimed by kswapd
since the system started. The ratio between these values can be interpreted as the
reclaim efficiency with a low efficiency implying that the system is struggling to
reclaim memory and may be thrashing. Light activity here is generally not something
to be concerned with.
pgscan_direct_*, pgsteal_direct_*
These report respectively the number of pages scanned and reclaimed by an applica-
tion directly. This is correlated with increases in the allocstall counter. This is
more serious than kswapd activity as these events indicate that processes are stalling.
Heavy activity here combined with kswapd and high rates of pgpgin , pgpout and/
or high rates of pswapin or pswpout are signs that a system is thrashing heavily.
More detailed information can be obtained using tracepoints.
thp_collapse_alloc, thp_collapse_alloc_failed
These counters correspond to how many THPs were allocated by khugepaged and
how many times a THP was not available and small pages were used. A high fallback
rate implies that the system is fragmented and THPs are not being used even when the
memory usage by applications would allow them. It is only a problem for applications
that are sensitive to TLB pressure.
The special les in the /proc le system can modify the size and behavior of kernel socket
buers; for general information about the /proc le system, see Section 2.6, “The /proc File
System”. Find networking related les in:
/proc/sys/net/core
/proc/sys/net/ipv4
/proc/sys/net/ipv6
In the /proc le system, for example, it is possible to either set the Maximum Socket Receive
Buer and Maximum Socket Send Buer for all protocols, or both these options for the TCP
protocol only (in ipv4 ) and thus overriding the setting for all protocols (in core ).
/proc/sys/net/ipv4/tcp_rmem
The three values setting the minimum, initial, and maximum size of the Memory Receive
Buer per connection. They define the actual memory usage, not only TCP window size.
/proc/sys/net/ipv4/tcp_wmem
The same as tcp_rmem , but for Memory Send Buer per connection.
/proc/sys/net/core/rmem_max
Set to limit the maximum receive buer size that applications can request.
/proc/sys/net/core/wmem_max
Set to limit the maximum send buer size that applications can request.
Via /proc it is possible to disable TCP features that you do not need (all TCP features are
switched on by default). For example, check the following les:
/proc/sys/net/ipv4/tcp_timestamps
TCP time stamps are defined in RFC1323.
/proc/sys/net/ipv4/tcp_window_scaling
TCP window scaling is also defined in RFC1323.
/proc/sys/net/ipv4/tcp_sack
Select acknowledgments (SACKS).
Use sysctl to read or write variables of the /proc le system. sysctl is preferable to cat
(for reading) and echo (for writing), because it also reads settings from /etc/sysctl.conf
and, thus, those settings survive reboots reliably. With sysctl you can read all variables and
their values easily; as root use the following command to list TCP related settings:
15.3 Netfilter
The Linux firewall and masquerading features are provided by the Netfilter kernel modules. This
is a highly configurable rule based framework. If a rule matches a packet, Netfilter accepts or
denies it or takes special action (“target”) as defined by rules such as address translation.
There are quite a lot of properties Netfilter can take into account. Thus, the more rules are
defined, the longer packet processing may last. Also advanced connection tracking could be
rather expensive and, thus, slowing down overall networking.
When the kernel queue becomes full, all new packets are dropped, causing existing connec-
tions to fail. The 'fail-open' feature allows a user to temporarily disable the packet inspection
and maintain the connectivity under heavy network traffic. For reference, see https://home.re-
git.org/netfilter-en/using-nfqueue-and-libnetfilter_queue/ .
For more information, see the home page of the Netfilter and iptables project, http://www.net-
filter.org
160 Detecting Network Bottlenecks and Analyzing Network Traffic SLED 12 SP3
in a single, serialized stream. To work around this issue, the operating system must "parallelize"
the stream to distribute the work across multiple CPUs. On SUSE Linux Enterprise Desktop this
is done via Receive Packet Steering (RPS). RPS can also be used in virtual environments.
RPS creates a unique hash for each data stream using IP addresses and port numbers. The use of
this hash ensures that packets for the same data stream are sent to the same CPU, which helps
to increase performance.
RPS is configured per network device receive queue and interface. The configuration le names
match the following scheme:
/sys/class/net/<device>/queues/<rx-queue>/rps_cpus
<device> stands for the network device, such as eth0 , eth1 . <rx-queue> stands for the
receive queue, such as rx-0 , rx-1 .
If the network interface hardware only supports a single receive queue, only rx-0 will exist. If
it supports multiple receive queues, there will be an rx- N directory for each receive queue.
These configuration les contain a comma-delimited list of CPU bitmaps. By default, all bits are
set to 0 . With this setting RPS is disabled and therefore the CPU that handles the interrupt will
also process the packet queue.
To enable RPS and enable specific CPUs to process packets for the receive queue of the interface,
set the value of their positions in the bitmap to 1 . For example, to enable CPUs 0-3 to process
packets for the rst receive queue for eth0, set the bit positions 0-3 to 1 in binary: 00001111 .
This representation then needs to be converted to hex—which results in F in this case. Set this
hex value with the following command:
On NUMA machines, best performance can be achieved by configuring RPS to use the CPUs on
the same NUMA node as the interrupt for the interface's receive queue.
161 Improving the Network Performance with Receive Packet Steering (RPS) SLED 12 SP3
On non-NUMA machines, all CPUs can be used. If the interrupt rate is very high, excluding the
CPU handling the network interface can boost performance. The CPU being used for the network
interface can be determined from /proc/interrupts . For example:
In this case, CPU 0 is the only CPU processing interrupts for eth0 , since only CPU0 contains
a non-zero value.
On x86 and AMD64/Intel 64 platforms, irqbalance can be used to distribute hardware inter-
rupts across CPUs. See man 1 irqbalance for more details.
John Heffner, Matt Mathis: “Tuning TCP for Linux 2.4 and 2.6” (2006): http://www.psc.e-
du/networking/projects/tcptune/#Linux
SUSE Linux Enterprise Desktop comes with several tools that help you obtain useful information
about your system. You can use the information for various purposes, for example, to debug
and nd problems in your program, to discover places causing performance drops, or to trace
a running process to nd out what system resources it uses. Most of the tools are part of the
installation media. In some cases, they need to be installed from the SUSE Software Development
Kit, which is a separate download.
To attach strace to an already running process, you need to specify the -p with the process
ID ( PID ) of the process that you want to monitor:
The -c calculates the time the kernel spent on each system call:
If you need to analyze the output of strace and the output messages are too long to be inspected
directly in the console window, use -o . In that case, unnecessary messages, such as information
about attaching and detaching processes, are suppressed. You can also suppress these messages
(normally printed on the standard output) with -q . To add time stamps at the beginning of
each line with a system call, use -t :
The behavior and output format of strace can be largely controlled. For more information, see
the relevant manual page (man 1 strace).
You can change the type of traced events with the -e option. The following example prints
library calls related to fnmatch and strlen functions:
You can make the output more readable by indenting each nested call by the specified number
of space with the -n NUM_OF_SPACES .
16.3.1 Installation
Valgrind is not shipped with standard SUSE Linux Enterprise Desktop distribution. To install it
on your system, you need to obtain SUSE Software Development Kit, and either install it and run
zypper install VALGRIND
or browse through the SUSE Software Development Kit directory tree, locate the Valgrind pack-
age and install it with
rpm -i valgrind- VERSION_ARCHITECTURE .rpm
The SDK is a module for SUSE Linux Enterprise and is available via an online channel from the
SUSE Customer Center. Alternatively download it from http://download.suse.com/ . (Search for
SUSE Linux Enterprise Software Development Kit ). Refer to Book “Deployment Guide”,
Chapter 10 “Installing Modules, Extensions, and Third Party Add-On Products” for details.
AMD64/Intel 64
POWER
z Systems
Valgrind consists of several tools, and each provides specific functionality. Information in this
section is general and valid regardless of the used tool. The most important configuration option
is --tool . This option tells Valgrind which tool to run. If you omit this option, memcheck is
selected by default. For example, to run find ~ -name .bashrc with Valgrind's memcheck tools,
enter the following in the command line:
valgrind --tool =memcheck nd ~ -name .bashrc
memcheck
Detects memory errors. It helps you tune your programs to behave correctly.
cachegrind
Profiles cache prediction. It helps you tune your programs to run faster.
callgrind
Works in a similar way to cachegrind but also gathers additional cache-profiling infor-
mation.
exp-drd
Detects thread errors. It helps you tune your multi-threaded programs to behave correctly.
helgrind
Another thread error detector. Similar to exp-drd but uses different techniques for prob-
lem analysis.
lackey
An example tool showing instrumentation basics.
1. The le .valgrindrc in the home directory of the user who runs Valgrind.
3. The le .valgrindrc in the current directory where Valgrind is run from.
These resources are parsed exactly in this order, while later given options take precedence over
earlier processed options. Options specific to a particular Valgrind tool must be prefixed with
the tool name and a colon. For example, if you want cachegrind to always write profile data to
the /tmp/cachegrind_PID.log , add the following line to the .valgrindrc le in your home
directory:
--cachegrind:cachegrind-out-file=/tmp/cachegrind_%p.log
16.3.6 Messages
During its runtime, Valgrind reports messages with detailed errors and important events. The
following example explains the messages:
The ==6558== introduces Valgrind's messages and contains the process ID number (PID). You
can easily distinguish Valgrind's messages from the output of the program itself, and decide
which messages belong to a particular process.
To make Valgrind's messages more detailed, use -v or even -v -v .
1. By default, Valgrind sends its messages to the le descriptor 2, which is the standard error
output. You can tell Valgrind to send its messages to any other le descriptor with the --
log-fd=FILE_DESCRIPTOR_NUMBER option.
2. The second and probably more useful way is to send Valgrind's messages to a le with --
log-file=FILENAME . This option accepts several variables, for example, %p gets replaced
with the PID of the currently profiled process. This way you can send messages to different
les based on their PID. %q{env_var} is replaced with the value of the related env_var
environment variable.
The following example checks for possible memory errors during the Apache Web server
restart, while following children processes and writing detailed Valgrind's messages to
separate les distinguished by the current process PID:
This process created 52 log les in the testing system, and took 75 seconds instead of the
usual 7 seconds needed to run sudo systemctl restart apache2 without Valgrind,
which is approximately 10 times more.
3. You may also prefer to send the Valgrind's messages over the network. You need to specify
the aa.bb.cc.dd IP address and port_num port number of the network socket with the
--log-socket=AA.BB.CC.DD:PORT_NUM option. If you omit the port number, 1500 will
be used.
It is useless to send Valgrind's messages to a network socket if no application is capable
of receiving them on the remote machine. That is why valgrind-listener , a simple
listener, is shipped together with Valgrind. It accepts connections on the specified port and
copies everything it receives to the standard output.
17.1 Introduction
With Kexec, you can replace the running kernel with another one without a hard reboot. The
tool is useful for several reasons:
Load the kernel to the address space of a production kernel for a regular reboot:
If you want to boot another kernel and preserve the data of the production kernel when the
system crashes, you need to reserve a dedicated area of the system memory. The production
kernel never loads to this area because it must be always available. It is used for the capture
kernel so that the memory pages of the production kernel can be preserved.
To reserve the area, append the option crashkernel to the boot command line of the produc-
tion kernel. To determine the necessary values for crashkernel , follow the instructions in Sec-
tion 17.4, “Calculating crashkernel Allocation Size”.
Note that this is not a parameter of the capture kernel. The capture kernel does not use Kexec.
The capture kernel is loaded to the reserved area and waits for the kernel to crash. Then, Kdump
tries to invoke the capture kernel because the production kernel is no longer reliable at this
stage. This means that even Kdump can fail.
To load the capture kernel, you need to include the kernel boot parameters. Usually, the initial
RAM le system is used for booting. You can specify it with --initrd = FILENAME . With --
append = CMDLINE , you append options to the command line of the kernel to boot.
You can always unload the previously loaded kernel. To unload a kernel that was loaded with
the -l option, use the kexec -u command. To unload a crash kernel loaded with the -p
option, use kexec -p -u command.
1. To nd out the base value for the computer, run the following in a terminal:
This command returns a list of values. All values are given in megabytes.
LUNs. The maximum number of LUN kernel paths that you expect to ever create on
the computer. Exclude multipath devices from this number, as these are ignored.
4. If the drivers for your device make many reservations in the DMA32 zone, the Low value
also needs to be adjusted. However, there is no simple formula to calculate these. Finding
the right size can therefore be a process of trial and error.
For the beginning, use the Low value recommended by kdumptool calibrate .
crashkernel=SIZE_HIGH,high crashkernel=SIZE_LOW,low
crashkernel=36M,high crashkernel=72M,low
Replace LOW with the determined Low value. Replace HIGH with the determined
HIGH value.
1. To nd out the basis value for the computer, run the following in a terminal:
This command returns a list of values. All values are given in megabytes.
3. Adapt the Low value from the previous step for the number of LUN kernel paths (paths to
storage devices) attached to the computer. A sensible value in megabytes can be calculated
using this formula:
LUNs. The maximum number of LUN kernel paths that you expect to ever create on
the computer. Exclude multipath devices from this number, as these are ignored.
crashkernel=SIZE_LOW
Replace the placeholder SIZE_LOW with the appropriate value from the previous step
and append the letter M (for megabytes).
As an example, the following is valid:
crashkernel=108M
1. To ignore devices you can run the cio_ignore tool to generate an appropriate
stanza to ignore all devices, except the ones currently active or in use.
When you run cio_ignore -u -k , the blacklist will become active and replace
any existing blacklist immediately. Unused devices are not being purged, so they
still appear in the channel subsystem. But adding new channel devices (via CP AT-
TACH under z/VM or dynamic I/O configuration change in LPAR) will treat them as
2. Now add the cio_ignore kernel parameter with the stanza from above to
KDUMP_CMDLINE_APPEND in /etc/sysconfig/kdump , for example:
KDUMP_COMMANDLINE_APPEND="cio_ignore=all,!da5d,!f500-f502"
1. Make sure no users are currently logged in and no important services are running on the
system.
2. Log in as root .
4. Load the new kernel to the address space of the production kernel with the following
command:
5. Unmount all mounted le systems except the root le system with:
umount -a
7. Initiate the reboot of the kernel that you loaded in Step 4 with:
root # kexec -e
It is important to unmount the previously mounted disk volumes in read-write mode. The re-
boot system call acts immediately upon calling. Hard disk volumes mounted in read-write mode
neither synchronize nor unmount automatically. The new kernel may nd them “dirty”. Read-
only disk volumes and virtual le systems do not need to be unmounted. Refer to /etc/mtab
to determine which le systems you need to unmount.
The new kernel previously loaded to the address space of the older kernel rewrites it and takes
control immediately. It displays the usual start-up messages. When the new kernel boots, it skips
all hardware and rmware checks. Make sure no warning messages appear. All le systems are
supposed to be clean if they had been unmounted.
1. Determine the amount of memory needed for Kdump by following the instructions in
Section 17.4, “Calculating crashkernel Allocation Size”. Make sure to set the kernel parameter
crashkernel .
4. You can edit the options in /etc/sysconfig/kdump . Reading the comments will help you
understand the meaning of individual options.
5. Execute the init script once with sudo systemctl start kdump , or reboot the system.
3. Unmount all the disk le systems except the root le system with:
root # umount -a
5. Invoke a “kernel panic” with the procfs interface to Magic SysRq keys:
The capture kernel boots and the crashed kernel memory snapshot is saved to the le sys-
tem. The save path is given by the KDUMP_SAVEDIR option and it defaults to /var/crash . If
KDUMP_IMMEDIATE_REBOOT is set to yes , the system automatically reboots the production ker-
nel. Log in and check that the dump has been created under /var/crash .
In case Kdump is configured to use a static IP configuration from a network device, you need to
add the network configuration to the KDUMP_COMMANDLINE_APPEND variable in /etc/syscon-
fig/kdump .
KDUMP_CPUS=1
KDUMP_IMMEDIATE_REBOOT=yes
KDUMP_SAVEDIR=ftp://[email protected]/crashdump/
KDUMP_KEEP_OLD_DUMPS=5
KDUMP_FREE_DISK_SIZE=64
KDUMP_VERBOSE=3
KDUMP_DUMPLEVEL=31
KDUMP_DUMPFORMAT=lzo
KDUMP_CONTINUE_ON_ERROR=yes
KDUMP_NETCONFIG=eth1:static
KDUMP_NET_TIMEOUT=30
Using this configuration, Kdump fails to reach the network when trying to write the dump
to the FTP server. To solve this issue, add the network configuration to KDUMP_COMMAN-
DLINE_APPEND in /etc/sysconfig/kdump . The general pattern for this looks like the
following:
KDUMP_COMMANDLINE_APPEND='ip=10.50.50.100:10.50.50.140:10.60.48.1:255.255.240.0:dump-
client:eth1:none'
Click Dump Filtering in the left pane, and check what pages to include in the dump. You do not
need to include the following memory content to be able to debug kernel problems:
Cache pages
Free pages
In the Dump Target window, select the type of the dump target and the URL where you want
to save the dump. If you selected a network protocol, such as FTP or SSH, you need to enter
relevant access information as well.
Fill the Email Notification window information if you want Kdump to inform you about its events
via e-mail and confirm your changes with OK after ne tuning Kdump in the Expert Settings
window. Kdump is now configured.
GDB does not understand other formats than ELF dumps (it cannot debug compressed
dumps).
That is why the crash utility was implemented. It analyzes crash dumps and debugs the running
system as well. It provides functionality specific to debugging the Linux kernel and is much
more suitable for advanced debugging.
If you want to debug the Linux kernel, you need to install its debugging information package in
addition. Check if the package is installed on your system with:
crash /boot/vmlinux-2.6.32.8-0.1-default.gz \
/var/crash/2010-04-23-11\:17/vmcore
The rst parameter represents the kernel image. The second parameter is the dump le captured
by Kdump. You can nd this le under /var/crash by default.
17.8.1.1 AMD64/Intel 64
Kernel packages for AMD64/Intel 64 from SUSE contain two kernel les: vmlinuz and vmlin-
ux.gz .
vmlinux.gz . This is a compressed ELF image that can be used by crash and GDB. The
ELF image is never used by the boot loader itself on AMD64/Intel 64. Therefore, only a
compressed version is shipped.
1. Put the kernel dump, the kernel image from /boot , and its associated debugging info le
from /usr/lib/debug/boot into a single empty directory.
3. In the directory with the dump, the kernel image, its debug info le, and the modules
subdirectory, start the crash utility:
Regardless of the computer on which you analyze the dump, the crash utility will produce output
similar to this:
crash 4.0-7.6
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Red Hat, Inc.
Copyright (C) 2004, 2005, 2006 IBM Corporation
Copyright (C) 1999-2006 Hewlett-Packard Co
Copyright (C) 2005, 2006 Fujitsu Limited
Copyright (C) 2006, 2007 VA Linux Systems Japan K.K.
Copyright (C) 2005 NEC Corporation
Copyright (C) 1999, 2002, 2007 Silicon Graphics, Inc.
Copyright (C) 1999, 2000, 2001, 2002 Mission Critical Linux, Inc.
This program is free software, covered by the GNU General Public License,
and you are welcome to change it and/or distribute copies of it under
KERNEL: /boot/vmlinux-2.6.32.8-0.1-default.gz
DEBUGINFO: /usr/lib/debug/boot/vmlinux-2.6.32.8-0.1-default.debug
DUMPFILE: /var/crash/2009-04-23-11:17/vmcore
CPUS: 2
DATE: Thu Apr 23 13:17:01 2010
UPTIME: 00:10:41
LOAD AVERAGE: 0.01, 0.09, 0.09
TASKS: 42
NODENAME: eros
RELEASE: 2.6.32.8-0.1-default
VERSION: #1 SMP 2010-03-31 14:50:44 +0200
MACHINE: x86_64 (2999 Mhz)
MEMORY: 1 GB
PANIC: "SysRq : Trigger a crashdump"
PID: 9446
COMMAND: "bash"
TASK: ffff88003a57c3c0 [THREAD_INFO: ffff880037168000]
CPU: 1
STATE: TASK_RUNNING (SYSRQ)
crash>
The command output prints rst useful data: There were 42 tasks running at the moment of the
kernel crash. The cause of the crash was a SysRq trigger invoked by the task with PID 9446. It
was a Bash process because the echo that has been used is an internal command of the Bash
shell.
The crash utility builds upon GDB and provides many additional commands. If you enter bt
without any parameters, the backtrace of the task running at the moment of the crash is printed:
crash> bt
PID: 9446 TASK: ffff88003a57c3c0 CPU: 1 COMMAND: "bash"
#0 [ffff880037169db0] crash_kexec at ffffffff80268fd6
#1 [ffff880037169e80] __handle_sysrq at ffffffff803d50ed
#2 [ffff880037169ec0] write_sysrq_trigger at ffffffff802f6fc5
#3 [ffff880037169ed0] proc_reg_write at ffffffff802f068b
Now it is clear what happened: The internal echo command of Bash shell sent a character to
/proc/sysrq-trigger . After the corresponding handler recognized this character, it invoked
the crash_kexec() function. This function called panic() and Kdump saved a dump.
In addition to the basic GDB commands and the extended version of bt , the crash utility defines
other commands related to the structure of the Linux kernel. These commands understand the
internal data structures of the Linux kernel and present their contents in a human readable for-
mat. For example, you can list the tasks running at the moment of the crash with ps . With sym ,
you can list all the kernel symbols with the corresponding addresses, or inquire an individual
symbol for its value. With files , you can display all the open le descriptors of a process. With
kmem , you can display details about the kernel memory usage. With vm , you can inspect the
virtual memory of a process, even at the level of individual page mappings. The list of useful
commands is very long and many of these accept a wide range of options.
The commands that we mentioned reflect the functionality of the common Linux commands,
such as ps and lsof . To nd out the exact sequence of events with the debugger, you need to
know how to use GDB and to have strong debugging skills. Both of these are out of the scope of
this document. In addition, you need to understand the Linux kernel. Several useful reference
information sources are given at the end of this document.
Kernel dumps are usually huge and contain many pages that are not necessary for analysis. With
KDUMP_DUMPLEVEL option, you can omit such pages. The option understands numeric value
between 0 and 31. If you specify 0 , the dump size will be largest. If you specify 31 , it will
produce the smallest dump. For a complete table of possible values, see the manual page of
kdump ( man 7 kdump ).
Sometimes it is very useful to make the size of the kernel dump smaller. For example, if you
want to transfer the dump over the network, or if you need to save some disk space in the dump
directory. This can be done with KDUMP_DUMPFORMAT set to compressed . The crash utility
supports dynamic decompression of the compressed dumps.
For the Kexec utility usage, see the manual page of kexec ( man 8 kexec ).
IBM provides a comprehensive documentation on how to use dump tools on the z Sys-
tems architecture at http://www.ibm.com/developerworks/linux/linux390/development_doc-
umentation.html .
For more details on crash dump analysis and debugging tools, use the following resources:
In addition to the info page of GDB ( info gdb ), there are printable guides at http://
sourceware.org/gdb/documentation/ .
A white paper with a comprehensive description of the crash utility usage can be found at
http://people.redhat.com/anderson/crash_whitepaper/ .
The crash utility also features a comprehensive online help. Use help COMMAND to display
the online help for command .
If you have the necessary Perl skills, you can use Alicia to make the debugging easier. This
Perl-based front-end to the crash utility can be found at http://alicia.sourceforge.net/ .
If you prefer to use Python instead, you should install Pykdump. This package helps you
control GDB through Python scripts and can be downloaded from http://sf.net/projects/
pykdump .
A very comprehensive overview of the Linux kernel internals is given in Understanding the
Linux Kernel by Daniel P. Bovet and Marco Cesati (ISBN 978-0-596-00565-8).
For network environments, it is vital to keep the computer and other devices' clocks synchro-
nized and accurate. There are several solutions to achieve this, for example the widely used
Network Time Protocol (NTP) described in Book “Administration Guide”, Chapter 25 “Time Synchro-
nization with NTP”.
The Precision Time Protocol (PTP) is a protocol capable of sub-microsecond accuracy, which is
better than what NTP achieves. PTP support is divided between the kernel and user space. The
kernel in SUSE Linux Enterprise Desktop includes support for PTP clocks, which are provided
by network drivers.
ethtool -T eth0
Time stamping parameters for eth0:
Capabilities:
hardware-transmit (SOF_TIMESTAMPING_TX_HARDWARE)
software-transmit (SOF_TIMESTAMPING_TX_SOFTWARE)
hardware-receive (SOF_TIMESTAMPING_RX_HARDWARE)
software-receive (SOF_TIMESTAMPING_RX_SOFTWARE)
software-system-clock (SOF_TIMESTAMPING_SOFTWARE)
hardware-raw-clock (SOF_TIMESTAMPING_RAW_HARDWARE)
PTP Hardware Clock: 0
Hardware Transmit Timestamp Modes:
off (HWTSTAMP_TX_OFF)
on (HWTSTAMP_TX_ON)
Hardware Receive Filter Modes:
none (HWTSTAMP_FILTER_NONE)
all (HWTSTAMP_FILTER_ALL)
SOF_TIMESTAMPING_SOFTWARE
SOF_TIMESTAMPING_TX_SOFTWARE
SOF_TIMESTAMPING_RX_SOFTWARE
SOF_TIMESTAMPING_RAW_HARDWARE
SOF_TIMESTAMPING_TX_HARDWARE
SOF_TIMESTAMPING_RX_HARDWARE
ptp4l -m -i eth0
selected eth0 as PTP clock
port 1: INITIALIZING to LISTENING on INITIALIZE
port 0: INITIALIZING to LISTENING on INITIALIZE
port 1: new foreign master 00a152.fffe.0b334d-1
selected best master clock 00a152.fffe.0b334d
port 1: LISTENING to UNCALIBRATED on RS_SLAVE
master offset -25937 s0 freq +0 path delay 12340
master offset -27887 s0 freq +0 path delay 14232
master offset -38802 s0 freq +0 path delay 13847
master offset -36205 s1 freq +0 path delay 10623
master offset -6975 s2 freq -30575 path delay 10286
port 1: UNCALIBRATED to SLAVE on MASTER_CLOCK_SELECTED
master offset -4284 s2 freq -30135 path delay 9892
The master offset value represents the measured offset from the master (in nanoseconds).
The s0 , s1 , s2 indicators show the different states of the clock servo: s0 is unlocked, s1
is clock step, and s2 is locked. If the servo is in the locked state ( s2 ), the clock will not be
stepped (only slowly adjusted) if the pi_offset_const option is set to a negative value in the
configuration le (see man 8 ptp4l for more information).
The freq value represents the frequency adjustment of the clock (in parts per billion, ppb).
The path delay value represents the estimated delay of the synchronization messages sent
from the master (in nanoseconds).
Port 0 is a Unix domain socket used for local PTP management. Port 1 is the eth0 interface.
INITIALIZING , LISTENING , UNCALIBRATED and SLAVE are examples of port states which
change on INITIALIZE , RS_SLAVE , and MASTER_CLOCK_SELECTED events. When the port state
changes from UNCALIBRATED to SLAVE , the computer has successfully synchronized with a PTP
master clock.
You can enable software time stamping with the -S option.
ptp4l -m -S -i eth3
In this case, ptp4l reads its options from the /etc/sysconfig/ptp4l le. By default, this le
tells ptp4l to read the configuration options from /etc/ptp4l.conf . For more information
on ptp4l options and the configuration le settings, see man 8 ptp4l .
To enable the ptp4l service permanently, run the following:
ptp4l -f /etc/ptp4l.conf
The configuration le is divided into sections. The global section (indicated as [global] ) sets
the program options, clock options and default port options. Other sections are port specific, and
they override the default port options. The name of the section is the name of the configured port
—for example, [eth0] . An empty port section can be used to replace the command line option.
[global]
verbose 1
time_stamping software
[eth0]
ptp4l -i eth0 -m -S
E2E
This method is specified with -E . This is the default.
The -b option specifies the boundary hops value in sent messages. Setting it to zero limits the
boundary to the local ptp4l instance. Increasing the value will retrieve the messages also from
PTP nodes that are further from the local instance. The returned information may include:
stepsRemoved
The number of communication nodes to the grandmaster clock.
offsetFromMaster, master_offset
The last measured offset of the clock from the master clock (nanoseconds).
meanPathDelay
The estimated delay of the synchronization messages sent from the master clock (nanosec-
onds).
gmPresent
If true , the PTP clock is synchronized to the master clock; the local clock is not the
grandmaster clock.
gmIdentity
This is the grandmaster's identity.
For a complete list of pmc command line options, see man 8 pmc .
phc2sys -s eth0 -w
PTP operates in International Atomic Time (TAI), while the system clock uses Coordinated Universal
Time (UTC). If you do not specify -w to wait for ptp4l synchronization, you can specify the
offset in seconds between TAI and UTC with -O :
In this case, phc2sys reads its options from the /etc/sysconfig/phc2sys le. For more in-
formation on phc2sys options, see man 8 phc2sys .
To enable the phc2sys service permanently, run the following:
ptp4l normally writes messages very frequently. You can reduce the frequency with the sum-
mary_interval directive. Its value is an exponent of the 2^N expression. For example, to reduce
the output to every 1024 (which is equal to 2^10) seconds, add the following line to the /etc/
ptp4l.conf le:
summary_interval 10
You can also reduce the frequency of the phc2sys command's updates with the -u SUMMA-
RY-UPDATES option.
/etc/sysconfig/ptp4l :
/etc/sysconfig/ptp4l :
/etc/sysconfig/phc2sys :
/etc/sysconfig/ptp4l :
/etc/ptp4l.conf :
priority1 127
/etc/sysconfig/ptp4l :
/etc/ptp4l.conf :
priority1 127
[global]
priority1 127
[eth0]
ptp4l -f /etc/ptp4l.conf
When hardware time stamping is used, you need to synchronize the PTP hardware clock to the
system clock with phc2sys :
server 127.127.1.0
fudge 127.127.1.0 stratum 0
NETCONFIG_NTP_POLICY=""
Section A.1, “September 2017 (Initial Release of SUSE Linux Enterprise Desktop 12 SP3)”
Section A.2, “November 2016 (Initial Release of SUSE Linux Enterprise Desktop 12 SP2)”
Section A.3, “March 2016 (Maintenance Release of SUSE Linux Enterprise Desktop 12 SP1)”
Section A.4, “December 2015 (Initial Release of SUSE Linux Enterprise Desktop 12 SP1)”
Section A.6, “October 2014 (Initial Release of SUSE Linux Enterprise Desktop 12)”
Numerous small fixes and additions to the documentation, based on technical feed-
back.
Removed all references to the faillog package, which is no longer shipped (https://
bugzilla.suse.com/show_bug.cgi?id=710788 ).
Added Section 2.7.3, “ Monitoring and Tuning the Thermal Subsystem: tmon ” (Fate
#319184 and #319185).
Updated Section 3.3, “Managing Log Files with logrotate” (Fate #322036 and
#322037).
205 September 2017 (Initial Release of SUSE Linux Enterprise Desktop 12 SP3) SLED 12 SP3
Chapter 17, Kexec and Kdump
Added information about YaST Kdump command line interface to Section 17.4, “Cal-
culating crashkernel Allocation Size” (Fate #320016).
The documentation for Docker has been enhanced and renamed to Docker Guide.
206 November 2016 (Initial Release of SUSE Linux Enterprise Desktop 12 SP2) SLED 12 SP3
Chapter 3, Analyzing and Managing System Log Files
Removed references to faillog, which is no longer shipped with SUSE Linux Enterprise
Desktop.
Bugfixes
Added the tip Excluding Unused and Inactive CCW Devices on IBM z Systems to Chap-
ter 17, Kexec and Kdump (https://bugzilla.suse.com/show_bug.cgi?id=990024 ).
Book “Subscription Management Tool for SLES 12 SP3” is now part of the documentation
for SUSE Linux Enterprise Desktop.
Add-ons provided by SUSE have been renamed as modules and extensions. The man-
uals have been updated to reflect this change.
207 March 2016 (Maintenance Release of SUSE Linux Enterprise Desktop 12 SP1) SLED 12 SP3
Numerous small fixes and additions to the documentation, based on technical feed-
back.
The registration service has been changed from Novell Customer Center to SUSE
Customer Center.
In YaST, you will now reach Network Settings via the System group. Network Devices
is gone (https://bugzilla.suse.com/show_bug.cgi?id=867809 ).
Added Section 2.5.2, “ Show the Network Usage of Processes: nethogs ” (Fate #313501).
Bugfixes
Chapter 9, Kernel Control Groups: General Update (Fate #312101 and https://bugzil-
la.suse.com/show_bug.cgi?id=897313 ).
208 December 2015 (Initial Release of SUSE Linux Enterprise Desktop 12 SP1) SLED 12 SP3
A.5 February 2015 (Documentation Maintenance
Update)
Bugfixes
Section 12.2, “Available I/O Elevators”: Increasing individual thread throughput using
CFQ on SLE 12 (https://bugzilla.suse.com/show_bug.cgi?id=907506 ).
Removed all KDE documentation and references because KDE is no longer shipped.
Move from System V init to systemd (Fate #310421). Updated affected parts of the
documentation.
YaST Runlevel Editor has changed to Services Manager (Fate #312568). Updated
affected parts of the documentation.
Removed all references to ISDN support, as ISDN support has been removed (Fate
#314594).
Removed all references to the YaST DSL module as it is no longer shipped (Fate
#316264).
Removed all references to the YaST Modem module as it is no longer shipped (Fate
#316264).
Btrfs has become the default le system for the root partition (Fate #315901). Up-
dated affected parts of the documentation.
The dmesg now provides human-readable time stamps in ctime() -like format (Fate
#316056). Updated affected parts of the documentation.
MariaDB is now shipped as the relational database instead of MySQL (Fate #313595).
Updated affected parts of the documentation.
Novell Customer Center has been replaced with SUSE Customer Center. Updated
affected parts of the documentation.
/var/run is mounted as tmpfs (Fate #303793). Updated affected parts of the doc-
umentation.
The following architectures are no longer supported: IA64 and x86. Updated affected
parts of the documentation.
The traditional method for setting up the network with ifconfig has been replaced
by wicked . Updated affected parts of the documentation.
A lot of networking commands are deprecated and have been replaced by newer
commands (usually ip ). Updated affected parts of the documentation.
arp : ip neighbor
ifconfig : ip addr , ip link
iptunnel : ip tunnel
iwconfig : iw
nameif : ip link , ifrename
netstat : ss , ip route , ip -s link , ip maddr
route : ip route
Numerous small fixes and additions to the documentation, based on technical feed-
back.
Updated command outputs with samples produced with SUSE Linux Enterprise 12.
Corrected the explanation for majflt and the statement about spreading I/O re-
quests over multiple disks in Section 2.1.3.1, “Generating reports with sar”.
210 October 2014 (Initial Release of SUSE Linux Enterprise Desktop 12) SLED 12 SP3
Replaced deprecated tools ifconfig and netstat with ip , ethtool and ss in
Section 2.5, “Networking”.
Added a tip on sharing the dump directory in Section 17.7.2, “YaST Configuration” (Fate
#313185).
Added a tip on identifying a kernel crash dump with kdumpid (Fate #312855) to
Section 17.8, “Analyzing the Crash Dump”.
Obsolete Content
Chapter Monitoring with Nagios has been removed from Part II, “System Monitoring” (Fate
#316136), because Nagios is no longer shipped on SUSE Linux Enterprise 12.
211 October 2014 (Initial Release of SUSE Linux Enterprise Desktop 12) SLED 12 SP3
Bugfixes
212 October 2014 (Initial Release of SUSE Linux Enterprise Desktop 12) SLED 12 SP3
B GNU Licenses
formats that can be read and edited only by proprietary word processors, SGML or XML for
This appendix contains the GNU Free Docu- which the DTD and/or processing tools are not generally available, and the machine-generat-
ed HTML, PostScript or PDF produced by some word processors for output purposes only.
mentation License version 1.2. The "Title Page" means, for a printed book, the title page itself, plus such following pages as
are needed to hold, legibly, the material this License requires to appear in the title page. For
works in formats which do not have any title page as such, "Title Page" means the text near the
GNU Free Documentation License most prominent appearance of the work's title, preceding the beginning of the body of the text.
A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely
Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, XYZ or contains XYZ in parentheses following text that translates XYZ in another language.
Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements",
of this license document, but changing it is not allowed. "Dedications", "Endorsements", or "History".) To "Preserve the Title" of such a section when
you modify the Document means that it remains a section "Entitled XYZ" according to this
definition.
0. PREAMBLE
The Document may include Warranty Disclaimers next to the notice which states that this
The purpose of this License is to make a manual, textbook, or other functional and useful License applies to the Document. These Warranty Disclaimers are considered to be included
document "free" in the sense of freedom: to assure everyone the effective freedom to copy by reference in this License, but only as regards disclaiming warranties: any other implication
and redistribute it, with or without modifying it, either commercially or non-commercially. that these Warranty Disclaimers may have is void and has no effect on the meaning of this
Secondarily, this License preserves for the author and publisher a way to get credit for their License.
work, while not being considered responsible for modifications made by others.
This License is a kind of "copyleft", which means that derivative works of the document must 2. VERBATIM COPYING
themselves be free in the same sense. It complements the GNU General Public License, which
is a copyleft license designed for free software. You may copy and distribute the Document in any medium, either commercially or non-
We have designed this License to use it for manuals for free software, because free software commercially, provided that this License, the copyright notices, and the license notice saying
needs free documentation: a free program should come with manuals providing the same this License applies to the Document are reproduced in all copies, and that you add no other
freedoms that the software does. But this License is not limited to software manuals; it can conditions whatsoever to those of this License. You may not use technical measures to obstruct
be used for any textual work, regardless of subject matter or whether it is published as a or control the reading or further copying of the copies you make or distribute. However, you
printed book. We recommend this License principally for works whose purpose is instruction may accept compensation in exchange for copies. If you distribute a large enough number of
or reference. copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly
display copies.
1. APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that contains a notice placed 3. COPYING IN QUANTITY
by the copyright holder saying it can be distributed under the terms of this License. Such a
notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under If you publish printed copies (or copies in media that commonly have printed covers) of the
the conditions stated herein. The "Document", below, refers to any such manual or work. Any Document, numbering more than 100, and the Document's license notice requires Cover Texts,
member of the public is a licensee, and is addressed as "you". You accept the license if you you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts:
copy, modify or distribute the work in a way requiring permission under copyright law. Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers
A "Modified Version" of the Document means any work containing the Document or a portion must also clearly and legibly identify you as the publisher of these copies. The front cover
of it, either copied verbatim, or with modifications and/or translated into another language. must present the full title with all words of the title equally prominent and visible. You may
add other material on the covers in addition. Copying with changes limited to the covers, as
A "Secondary Section" is a named appendix or a front-matter section of the Document that
long as they preserve the title of the Document and satisfy these conditions, can be treated
deals exclusively with the relationship of the publishers or authors of the Document to the
as verbatim copying in other respects.
Document's overall subject (or to related matters) and contains nothing that could fall directly
within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a If the required texts for either cover are too voluminous to t legibly, you should put the
Secondary Section may not explain any mathematics.) The relationship could be a matter rst ones listed (as many as t reasonably) on the actual cover, and continue the rest onto
of historical connection with the subject or with related matters, or of legal, commercial, adjacent pages.
philosophical, ethical or political position regarding them. If you publish or distribute Opaque copies of the Document numbering more than 100, you
The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being must either include a machine-readable Transparent copy along with each Opaque copy, or
those of Invariant Sections, in the notice that says that the Document is released under this state in or with each Opaque copy a computer-network location from which the general net-
License. If a section does not t the above definition of Secondary then it is not allowed to be work-using public has access to download using public-standard network protocols a complete
designated as Invariant. The Document may contain zero Invariant Sections. If the Document Transparent copy of the Document, free of added material. If you use the latter option, you
does not identify any Invariant Sections then there are none. must take reasonably prudent steps, when you begin distribution of Opaque copies in quanti-
ty, to ensure that this Transparent copy will remain thus accessible at the stated location until
The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or
at least one year after the last time you distribute an Opaque copy (directly or through your
Back-Cover Texts, in the notice that says that the Document is released under this License. A
agents or retailers) of that edition to the public.
Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.
It is requested, but not required, that you contact the authors of the Document well before
A "Transparent" copy of the Document means a machine-readable copy, represented in a for-
redistributing any large number of copies, to give them a chance to provide you with an
mat whose specification is available to the general public, that is suitable for revising the doc-
updated version of the Document.
ument straightforwardly with generic text editors or (for images composed of pixels) generic
paint programs or (for drawings) some widely available drawing editor, and that is suitable
for input to text formatters or for automatic translation to a variety of formats suitable for
input to text formatters. A copy made in an otherwise Transparent le format whose markup,
or absence of markup, has been arranged to thwart or discourage subsequent modification
by readers is not Transparent. An image format is not Transparent if used for any substantial
amount of text. A copy that is not "Transparent" is called "Opaque".
Examples of suitable formats for Transparent copies include plain ASCII without markup, Tex-
info input format, LaTeX input format, SGML or XML using a publicly available DTD, and stan-
dard-conforming simple HTML, PostScript or PDF designed for human modification. Examples
of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary
You may copy and distribute a Modified Version of the Document under the conditions of
sections 2 and 3 above, provided that you release the Modified Version under precisely this 5. COMBINING DOCUMENTS
License, with the Modified Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy of it. In addition, you You may combine the Document with other documents released under this License, under
must do these things in the Modified Version: the terms defined in section 4 above for modified versions, provided that you include in the
combination all of the Invariant Sections of all of the original documents, unmodified, and
A. Use in the Title Page (and on the covers, if any) a title distinct from that of the
list them all as Invariant Sections of your combined work in its license notice, and that you
Document, and from those of previous versions (which should, if there were any,
preserve all their Warranty Disclaimers.
be listed in the History section of the Document). You may use the same title as a
previous version if the original publisher of that version gives permission. The combined work need only contain one copy of this License, and multiple identical Invari-
ant Sections may be replaced with a single copy. If there are multiple Invariant Sections with
B. List on the Title Page, as authors, one or more persons or entities responsible for the same name but different contents, make the title of each such section unique by adding
authorship of the modifications in the Modified Version, together with at least ve at the end of it, in parentheses, the name of the original author or publisher of that section if
of the principal authors of the Document (all of its principal authors, if it has fewer known, or else a unique number. Make the same adjustment to the section titles in the list of
than ve), unless they release you from this requirement. Invariant Sections in the license notice of the combined work.
C. State on the Title page the name of the publisher of the Modified Version, as the In the combination, you must combine any sections Entitled "History" in the various original
publisher. documents, forming one section Entitled "History"; likewise combine any sections Entitled
"Acknowledgements", and any sections Entitled "Dedications". You must delete all sections
D. Preserve all the copyright notices of the Document.
Entitled "Endorsements".
E. Add an appropriate copyright notice for your modifications adjacent to the other
copyright notices.
6. COLLECTIONS OF DOCUMENTS
F. Include, immediately after the copyright notices, a license notice giving the public
permission to use the Modified Version under the terms of this License, in the form You may make a collection consisting of the Document and other documents released under
shown in the Addendum below. this License, and replace the individual copies of this License in the various documents with a
single copy that is included in the collection, provided that you follow the rules of this License
G. Preserve in that license notice the full lists of Invariant Sections and required Cover
for verbatim copying of each of the documents in all other respects.
Texts given in the Document's license notice.
You may extract a single document from such a collection, and distribute it individually under
H. Include an unaltered copy of this License. this License, provided you insert a copy of this License into the extracted document, and follow
this License in all other respects regarding verbatim copying of that document.
I. Preserve the section Entitled "History", Preserve its Title, and add to it an item
stating at least the title, year, new authors, and publisher of the Modified Version
as given on the Title Page. If there is no section Entitled "History" in the Document, 7. AGGREGATION WITH INDEPENDENT WORKS
create one stating the title, year, authors, and publisher of the Document as given
on its Title Page, then add an item describing the Modified Version as stated in A compilation of the Document or its derivatives with other separate and independent docu-
the previous sentence. ments or works, in or on a volume of a storage or distribution medium, is called an "aggregate"
if the copyright resulting from the compilation is not used to limit the legal rights of the com-
J. Preserve the network location, if any, given in the Document for public access to
pilation's users beyond what the individual works permit. When the Document is included in
a Transparent copy of the Document, and likewise the network locations given in
an aggregate, this License does not apply to the other works in the aggregate which are not
the Document for previous versions it was based on. These may be placed in the
themselves derivative works of the Document.
"History" section. You may omit a network location for a work that was published
at least four years before the Document itself, or if the original publisher of the If the Cover Text requirement of section 3 is applicable to these copies of the Document, then
version it refers to gives permission. if the Document is less than one half of the entire aggregate, the Document's Cover Texts
may be placed on covers that bracket the Document within the aggregate, or the electronic
K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title equivalent of covers if the Document is in electronic form. Otherwise they must appear on
of the section, and preserve in the section all the substance and tone of each of the printed covers that bracket the whole aggregate.
contributor acknowledgements and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document, unaltered in their text and 8. TRANSLATION
in their titles. Section numbers or the equivalent are not considered part of the
section titles. Translation is considered a kind of modification, so you may distribute translations of the
M. Delete any section Entitled "Endorsements". Such a section may not be included Document under the terms of section 4. Replacing Invariant Sections with translations requires
in the Modified Version. special permission from their copyright holders, but you may include translations of some
or all Invariant Sections in addition to the original versions of these Invariant Sections. You
N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in may include a translation of this License, and all the license notices in the Document, and
title with any Invariant Section. any Warranty Disclaimers, provided that you also include the original English version of this
O. Preserve any Warranty Disclaimers. License and the original versions of those notices and disclaimers. In case of a disagreement
between the translation and the original version of this License or a notice or disclaimer, the
If the Modified Version includes new front-matter sections or appendices that qualify as Se- original version will prevail.
condary Sections and contain no material copied from the Document, you may at your option
If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the
designate some or all of these sections as invariant. To do this, add their titles to the list of
requirement (section 4) to Preserve its Title (section 1) will typically require changing the
Invariant Sections in the Modified Version's license notice. These titles must be distinct from
actual title.
any other section titles.
You may add a section Entitled "Endorsements", provided it contains nothing but endorse-
ments of your Modified Version by various parties--for example, statements of peer review
9. TERMINATION
or that the text has been approved by an organization as the authoritative definition of a
You may not copy, modify, sublicense, or distribute the Document except as expressly pro-
standard.
vided for under this License. Any other attempt to copy, modify, sublicense or distribute the
You may add a passage of up to ve words as a Front-Cover Text, and a passage of up to 25
Document is void, and will automatically terminate your rights under this License. However,
words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only
parties who have received copies, or rights, from you under this License will not have their
one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through
licenses terminated so long as such parties remain in full compliance.
arrangements made by) any one entity. If the Document already includes a cover text for the
same cover, previously added by you or by arrangement made by the same entity you are
acting on behalf of, you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The Free Software Foundation may publish new, revised versions of the GNU Free Documen-
tation License from time to time. Such new versions will be similar in spirit to the present
version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/
copyleft/ .
Each version of the License is given a distinguishing version number. If the Document specifies
that a particular numbered version of this License "or any later version" applies to it, you have
the option of following the terms and conditions either of that specified version or of any
later version that has been published (not as a draft) by the Free Software Foundation. If the
Document does not specify a version number of this License, you may choose any version ever
published (not as a draft) by the Free Software Foundation.
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the
“with...Texts.” line with this:
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
If you have Invariant Sections without Cover Texts, or some other combination of the three,
merge those two alternatives to suit the situation.
If your document contains nontrivial examples of program code, we recommend releasing
these examples in parallel under your choice of free software license, such as the GNU General
Public License, to permit their use in free software.