Skip Navigation Links | |
Exit Print View | |
Oracle Solaris 11.1 Tunable Parameters Reference Manual Oracle Solaris 11.1 Information Library |
1. Overview of Oracle Solaris System Tuning
2. Oracle Solaris Kernel Tunable Parameters
Where to Find Tunable Parameter Information
fsflush and Related Parameters
General File System Parameters
SPARC System Specific Parameters
3. Oracle Solaris ZFS Tunable Parameters
5. Internet Protocol Suite Tunable Parameters
A. Tunable Parameters Change History
This section describes general kernel parameters that are related to physical memory and stack configuration. The ZFS-related memory parameters have moved to Chapter 3, Oracle Solaris ZFS Tunable Parameters.
Modifies the system's configuration of the number of physical pages of memory after the Oracle Solaris OS and firmware are accounted for.
Unsigned long
Number of usable pages of physical memory available on the system, not counting the memory where the core kernel and data are stored
1 to amount of physical memory on system
Pages
No
None
Whenever you want to test the effect of running the system with less physical memory. Because this parameter does not take into account the memory used by the core kernel and data, as well as various other data structures allocated early in the startup process, the value of physmem should be less than the actual number of pages that represent the smaller amount of memory.
Unstable
Specifies the default stack size of all threads. No thread can be created with a stack size smaller than default_stksize. If default_stksize is set, it overrides lwp_default_stksize. See also lwp_default_stksize.
Integer
3 x PAGESIZE on SPARC systems
5 x PAGESIZE on x64 systems
Minimum is the default values:
3 x PAGESIZE on SPARC systems
5 x PAGESIZE on x64 systems
Maximum is 32 times the default value.
Bytes in multiples of the value returned by the getpagesize parameter. For more information, see getpagesize(3C).
Yes. Affects threads created after the variable is changed.
Must be greater than or equal to 8192 and less than or equal to 262,144 (256 x 1024). Also must be a multiple of the system page size. If these conditions are not met, the following message is displayed:
Illegal stack size, Using N
The value of N is the default value of default_stksize.
When the system panics because it has run out of stack space. The best solution for this problem is to determine why the system is running out of space and then make a correction.
Increasing the default stack size means that almost every kernel thread will have a larger stack, resulting in increased kernel memory consumption for no good reason. Generally, that space will be unused. The increased consumption means other resources that are competing for the same pool of memory will have the amount of space available to them reduced, possibly decreasing the system's ability to perform work. Among the side effects is a reduction in the number of threads that the kernel can create. This solution should be treated as no more than an interim workaround until the root cause is remedied.
Unstable
Specifies the default value of the stack size to be used when a kernel thread is created, and when the calling routine does not provide an explicit size to be used.
Integer
32,768 for SPARC platforms
20,480 for x64 platforms
Minimum is the default values:
3 x PAGESIZE on SPARC systems
5 x PAGESIZE on x64 systems
Maximum is 32 times the default value.
Bytes in multiples of the value returned by the getpagesize parameter. For more information, see getpagesize(3C).
Yes. Affects threads created after the variable is changed.
Must be greater than or equal to 8192 and less than or equal to 262,144 (256 x 1024). Also must be a multiple of the system page size. If these conditions are not met, the following message is displayed:
Illegal stack size, Using N
The value of N is the default value of lwp_default_stksize.
When the system panics because it has run out of stack space. The best solution for this problem is to determine why the system is running out of space and then make a correction.
Increasing the default stack size means that almost every kernel thread will have a larger stack, resulting in increased kernel memory consumption for no good reason. Generally, that space will be unused. The increased consumption means other resources that are competing for the same pool of memory will have the amount of space available to them reduced, possibly decreasing the system's ability to perform work. Among the side effects is a reduction in the number of threads that the kernel can create. This solution should be treated as no more than an interim workaround until the root cause is remedied.
Unstable
Maximum number of system events allowed to be queued and waiting for delivery to the syseventd daemon. Once the size of the system event queue reaches this limit, no other system events are allowed on the queue.
Integer
5000
0 to MAXINT
System events
Yes
The system event framework checks this value every time a system event is generated by ddi_log_sysevent and sysevent_post_event.
For more information, see ddi_log_sysevent(9F) and sysevent_post_event(3SYSEVENT).
When error log messages indicate that a system event failed to be logged, generated, or posted.
Unstable
Specifies the amount of kernel pageable memory available. This memory is used primarily for kernel thread stacks. Increasing this number allows either larger stacks for the same number of threads or more threads.
Unsigned long
2 GB x the smaller result of nCPUs / 128 or the amount of physical memory / 256 GB
512 MB to 64 GB (SPARC)
200 MB to 8 GB (x86)
Pages
No
Value is compared to minimum and maximum sizes. If smaller than the minimum or larger than the maximum, it is reset to 2 GB. A message to that effect is displayed.
On SPARC systems, the segkpsize value cannot exceed twice the size of physical memory. On x86 systems, the value cannot exceed the size of physical memory.
Required to support large numbers of processes on a system. The default size of 2 GB allows creation of 24-KB stacks for more than 65,536 kernel threads. If more than this number is needed or the stack size needs to be increased, segkpsize can be increased, assuming sufficient physical memory exists.
Unstable
For information, see segkpsize.
Enables the stack to be marked as nonexecutable, which helps make buffer-overflow attacks more difficult.
An Oracle Solaris system running a 64-bit kernel makes the stacks of all 64-bit applications nonexecutable by default. Setting this parameter is necessary to make 32-bit applications nonexecutable.
Signed integer
0 (disabled)
0 (disabled) or 1 (enabled)
Toggle (on/off)
Yes. Does not affect currently running processes, only processes created after the value is set.
None
Should be enabled at all times unless applications are deliberately placing executable code on the stack without using mprotect to make the stack executable. For more information, see mprotect(2).
Unstable