diff options
author | Lukas Stockner <lstockner@genesiscloud.com> | 2024-06-18 14:52:52 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-08-29 08:40:34 +0000 |
commit | b4808de24779cd0037568cff003b915e25edbdc6 (patch) | |
tree | 3d991c2985267d738da5691d0ad77d59d45b7ec8 /docs/configuration/reference.rst | |
parent | ff17350ae04dd975c139685d01dc4818e50dbdfe (diff) |
buffers: support disabling allocation per numa domain
Currently, the per-numa buffer allocation doesn't support skipping the
allocation altogether for a particular NUMA domain - if it's set to
zero, it instead uses the default allocation.
Therefore, this changes the behavior so that the default is only used
if no per-numa allocation is specified, and an allocation of zero
is honored by not allocating a buffer at all.
Type: improvement
Change-Id: Ie9133b179a88eb884aa3da921e65292daea0df2d
Signed-off-by: Lukas Stockner <lstockner@genesiscloud.com>
Diffstat (limited to 'docs/configuration/reference.rst')
-rw-r--r-- | docs/configuration/reference.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/configuration/reference.rst b/docs/configuration/reference.rst index d288a6d7788..2a7726cccb4 100644 --- a/docs/configuration/reference.rst +++ b/docs/configuration/reference.rst @@ -552,7 +552,9 @@ buffers <n> ^^^^^^^^^^^^^^^ The number of buffers allocated for this specific NUMA domain. -Default is 0, which falls back to the value configured in **buffers-per-numa**. +If this is set to zero, no buffers are allocated for this domain. + +By default, the value configured in **buffers-per-numa** is used. .. code-block:: console |