このコンテンツは選択した言語では利用できません。
Chapter 2. Important Changes to External Kernel Parameters
This chapter provides system administrators with a summary of significant changes in the kernel shipped with Red Hat Enterprise Linux 6.8. These changes include added or updated
proc
entries, sysctl
, and sysfs
default values, boot parameters, kernel configuration options, or any noticeable behavior changes.
- force_hrtimer_reprogram [KNL]
- Force the reprogramming of expired timers in the
hrtimer_reprogram()
function. - softirq_2ms_loop [KNL]
- Set
softirq
handling to 2 ms maximum. The default time is the existing Red Hat Enterprise Linux 6 behaviour. - tpm_suspend_pcr=[HW,TPM]
- Specify that, at suspend time, the
tpm
driver should extend the specified principal components regression (PCR) with zeros as a workaround for some chips which fail to flush the last written PCR on aTPM_SaveState
operation. This guarantees that all the other PCRs are saved.Format: integer pcr id /proc/fs/fscache/stats
Table 2.1. class Ops: new: ini=N Number of async ops initialised changed: rel=N will be equal to ini=N when idle Table 2.2. new class CacheEv nsp=N Number of object lookups or creations rejected due to a lack of space stl=N Number of stale objects deleted rtr=N Number of objects retired when relinquished cul=N Number of objects culled /proc/sys/net/core/default_qdisc
- The default queuing discipline to use for network devices. This allows overriding the default queue discipline of
pfifo_fast
with an alternative. Since the default queuing discipline is created with no additional parameters, it is best suited to queuing disciplines that work well without configuration, for example, a stochastic fair queue (sfq
). Do not use queuing disciplines like Hierarchical Token Bucket or Deficit Round Robin, which require setting up classes and bandwidths.Default: pfifo_fast /sys/kernel/mm/ksm/max_page_sharing
- Maximum sharing allowed for each KSM page. This enforces a deduplication limit to avoid the virtual memory
rmap
lists to grow too large. The minimum value is 2 as a newly created KSM page will have at least two sharers. Thermap
walk has O(N) complexity whereN
is the number ofrmap_items
, that is virtual mappings that are sharing the page, which is in turn capped bymax_page_sharing
. So this effectively spreads the linear O(N) computational complexity fromrmap
walk context over different KSM pages. Theksmd
walk over thestable_node
chains
is also O(N), but N is the number ofstable_node
dups
, not the number ofrmap_items
, so it has not a significant impact onksmd
performance. In practice the beststable_node
dups
candidate is kept and found at the head of thedups
list. The higher this value the faster KSM merges the memory, because there will be fewerstable_node
dups queued into thestable_node
chain->hlist to check for pruning. And the higher the deduplication factor is, but the slowest the worst casermap
walk could be for any given KSM page. Slowing down thermap
walk means there will be higher latency for certain virtual memory operations happening during swapping, compaction, NUMA balancing, and page migration, in turn decreasing responsiveness for the caller of those virtual memory operations. The scheduler latency of other tasks not involved with the VM operations doing thermap
walk is not affected by this parameter as thermap
walks are always scheduled friendly themselves. /proc/sys/net/core/default_qdisc
- The default queuing discipline to use for network devices. This allows overriding the default queue discipline of
pfifo_fast
with an alternative. Since the default queuing discipline is created with no additional parameters so is best suited to queuing disciplines that work well without configuration, for example, a stochastic fair queue (sfq
). Do not use queuing disciplines like Hierarchical Token Bucket or Deficit Round Robin which require setting up classes and bandwidths.Default: pfifo_fast /sys/kernel/mm/ksm/stable_node_chains_prune_millisecs
- How frequently to walk the whole list of
stable_node
"dups" linked in thestable_node
chains
in order to prune stalestable_node
. Smaller milllisecs values will free up the KSM metadata with lower latency, but they will makeksmd
use more CPU during the scan. This only applies to thestable_node
chains so it is a noop unless a single KSM page hitsmax_page_sharing
. In such a case there are nostable_node
chains. /sys/kernel/mm/ksm/stable_node_chains
- Number of stable node chains allocated. this is effectively the number of KSM pages that hit the
max_page_sharing
limit. /sys/kernel/mm/ksm/stable_node_dups
- Number of stable node dups queued into the
stable_node
chains.