
In order to bootstrap and unlock on debian, there are several workarounds required while the code is being modified to properly support both Centos and Debian. This is considered a temporary folder because eventually all the workarounds should end up being resolved and removed from the scripts. Updated tox to exclude the two scripts from bashate Story: 2009101 Task: 44827 Co-Authored-By: Dan Voiculeasa <dan.voiculeasa@windriver.com> Signed-off-by: Al Bailey <al.bailey@windriver.com> Change-Id: I0cca8e564c1f30333ef7d060ea7f8a6089187d1a
56 lines
2.6 KiB
Plaintext
56 lines
2.6 KiB
Plaintext
################################################################################
|
|
# Copyright (c) 2018 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
################################################################################
|
|
# WORKER Node configuration parameters for reserved memory and physical cores
|
|
# used by Base software and VSWITCH. These are resources that libvirt cannot use.
|
|
#
|
|
|
|
################################################################################
|
|
#
|
|
# List of logical CPU instances available in the system. This value is used
|
|
# for auditing purposes so that the current configuration can be checked for
|
|
# validity against the actual number of logical CPU instances in the system.
|
|
#
|
|
################################################################################
|
|
WORKER_CPU_LIST="0-7"
|
|
|
|
################################################################################
|
|
#
|
|
# List of Base software resources reserved per numa node. Each array element
|
|
# consists of a 3-tuple formatted as: <node>:<memory>:<cores>.
|
|
#
|
|
# Example: To reserve 1500MB and 1 core on NUMA node0, and 1500MB and 1 core
|
|
# on NUMA node1, the variable must be specified as follows.
|
|
# WORKER_BASE_MEMORY=("node0:1500MB:1" "node1:1500MB:1")
|
|
#
|
|
################################################################################
|
|
WORKER_BASE_RESERVED=("node0:14500MB:1" "node1:2000MB:0" "node2:2000MB:0" "node3:2000MB:0")
|
|
|
|
################################################################################
|
|
#
|
|
# List of HugeTLB memory descriptors to configure. Each array element
|
|
# consists of a 3-tuple descriptor formatted as: <node>:<pgsize>:<pgcount>.
|
|
# The NUMA node specified must exist and the HugeTLB pagesize must be a valid
|
|
# value such as 2048kB or 1048576kB.
|
|
#
|
|
# For example, to request 256 x 2MB HugeTLB pages on NUMA node0 and node1 the
|
|
# variable must be specified as follows.
|
|
# WORKER_VSWITCH_MEMORY=("node0:2048kB:256" "node1:2048kB:256")
|
|
#
|
|
################################################################################
|
|
WORKER_VSWITCH_MEMORY=("node0:1048576kB:1" "node1:1048576kB:1" "node2:1048576kB:1" "node3:1048576kB:1")
|
|
|
|
################################################################################
|
|
#
|
|
# List of VSWITCH physical cores reserved for VSWITCH applications.
|
|
#
|
|
# Example: To reserve 2 cores on NUMA node0, and 2 cores on NUMA node1, the
|
|
# variable must be specified as follows.
|
|
# WORKER_VSWITCH_CORES=("node0:2" "node1:2")
|
|
#
|
|
################################################################################
|
|
WORKER_VSWITCH_CORES=("node0:2" "node1:0" "node2:0" "node3:0")
|