Struct dpdk_unix::SysPath[][src]

pub struct SysPath(_);

Represents /sys.

Methods

impl SysPath
[src]

Is this a NUMA-based machine?

Is this a NUMA node (assuming we're on a NUMA-based machine)?

Note that this might be a fake NUMA node, ie one lacking any hyper threads.

A hyper thread file.

A NUMA node file.

A PCI device file.

A path about all hyper threads.

A path about all NUMA nodes.

A path about all PCI devices.

Rescans all PCI buses and devices.

Errors are swallowed.

Changes Transparent Huge Pages (THP) settings.

The value of the transparent_huge_page_regular_memory_choice can also be specified in the Linux kernel command line parameters as one of "transparent_hugepage=never", "transparent_hugepage=always" or "transparent_hugepage=madvise".

Changes defragmentation using the Kernel-internal khugepaged daemon thread for Transparent Huge Pages (THP).

  • The kernel default for pages_to_scan is 4096.
  • The kernel default for scan_sleep_in_milliseconds is 10_000.
  • The kernel default for alloc_sleep_millisecs is 60_000.
  • The kernel default for how_many_extra_small_pages_not_already_mapped_can_be_allocated_when_collapsing_small_pages is 511. Also known as max_ptes_none. A higher value leads to use additional memory for programs. A lower value produces less gains in performance. The value itself has very little effect on CPU usage.
  • The kernel default for how_many_extra_small_pages_not_already_mapped_can_be_swapped_when_collapsing_small_pages is 64. Also known as max_ptes_swap. A higher value can cause excessive swap IO and waste memory. A lower value can prevent THPs from being collapsed, resulting in fewer pages being collapsed into THPs, and so lower memory access performance.

Trait Implementations

impl Debug for SysPath
[src]

Formats the value using the given formatter. Read more

impl Clone for SysPath
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Ord for SysPath
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for SysPath
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for SysPath
[src]

impl PartialEq for SysPath
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for SysPath
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for SysPath
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for SysPath

impl Sync for SysPath