2016-02-19 21:11:08 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-05-10 11:04:32 +00:00
|
|
|
os=$(uname -s)
|
|
|
|
|
|
|
|
if [[ $os != Linux && $os != FreeBSD ]]; then
|
|
|
|
echo "Not supported platform ($os), aborting"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
rootdir=$(readlink -f $(dirname $0))/..
|
2018-01-02 21:44:48 +00:00
|
|
|
source "$rootdir/scripts/common.sh"
|
2016-02-19 21:11:08 +00:00
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function usage() {
|
2020-05-10 11:04:32 +00:00
|
|
|
if [[ $os == Linux ]]; then
|
2018-07-17 19:43:33 +00:00
|
|
|
options="[config|reset|status|cleanup|help]"
|
2018-01-15 18:49:30 +00:00
|
|
|
else
|
|
|
|
options="[config|reset|help]"
|
|
|
|
fi
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
[[ -n $2 ]] && (
|
|
|
|
echo "$2"
|
|
|
|
echo ""
|
|
|
|
)
|
2019-05-24 09:04:51 +00:00
|
|
|
echo "Helper script for allocating hugepages and binding NVMe, I/OAT, VMD and Virtio devices"
|
|
|
|
echo "to a generic VFIO kernel driver. If VFIO is not available on the system, this script"
|
|
|
|
echo "will fall back to UIO. NVMe and Virtio devices with active mountpoints will be ignored."
|
2018-01-15 18:49:30 +00:00
|
|
|
echo "All hugepage operations use default hugepage size on the system (hugepagesz)."
|
|
|
|
echo "Usage: $(basename $1) $options"
|
|
|
|
echo
|
|
|
|
echo "$options - as following:"
|
|
|
|
echo "config Default mode. Allocate hugepages and bind PCI devices."
|
2020-05-10 11:04:32 +00:00
|
|
|
if [[ $os == Linux ]]; then
|
2020-05-11 12:08:41 +00:00
|
|
|
echo "cleanup Remove any orphaned files that can be left in the system after SPDK application exit"
|
2018-07-17 19:43:33 +00:00
|
|
|
fi
|
2018-01-15 18:49:30 +00:00
|
|
|
echo "reset Rebind PCI devices back to their original drivers."
|
|
|
|
echo " Also cleanup any leftover spdk files/resources."
|
|
|
|
echo " Hugepage memory size will remain unchanged."
|
2020-05-10 11:04:32 +00:00
|
|
|
if [[ $os == Linux ]]; then
|
2018-01-15 18:49:30 +00:00
|
|
|
echo "status Print status of all SPDK-compatible devices on the system."
|
|
|
|
fi
|
|
|
|
echo "help Print this help message."
|
|
|
|
echo
|
|
|
|
echo "The following environment variables can be specified."
|
|
|
|
echo "HUGEMEM Size of hugepage memory to allocate (in MB). 2048 by default."
|
|
|
|
echo " For NUMA systems, the hugepages will be evenly distributed"
|
|
|
|
echo " between CPU nodes"
|
|
|
|
echo "NRHUGE Number of hugepages to allocate. This variable overwrites HUGEMEM."
|
|
|
|
echo "HUGENODE Specific NUMA node to allocate hugepages on. To allocate"
|
|
|
|
echo " hugepages on multiple nodes run this script multiple times -"
|
|
|
|
echo " once for each node."
|
2019-02-01 09:10:17 +00:00
|
|
|
echo "PCI_WHITELIST"
|
2019-05-24 09:04:51 +00:00
|
|
|
echo "PCI_BLACKLIST Whitespace separated list of PCI devices (NVMe, I/OAT, VMD, Virtio)."
|
2018-01-15 18:49:30 +00:00
|
|
|
echo " Each device must be specified as a full PCI address."
|
2018-01-23 14:07:10 +00:00
|
|
|
echo " E.g. PCI_WHITELIST=\"0000:01:00.0 0000:02:00.0\""
|
|
|
|
echo " To blacklist all PCI devices use a non-valid address."
|
|
|
|
echo " E.g. PCI_WHITELIST=\"none\""
|
2019-02-01 09:10:17 +00:00
|
|
|
echo " If PCI_WHITELIST and PCI_BLACKLIST are empty or unset, all PCI devices"
|
|
|
|
echo " will be bound."
|
|
|
|
echo " Each device in PCI_BLACKLIST will be ignored (driver won't be changed)."
|
|
|
|
echo " PCI_BLACKLIST has precedence over PCI_WHITELIST."
|
2018-01-15 18:49:30 +00:00
|
|
|
echo "TARGET_USER User that will own hugepage mountpoint directory and vfio groups."
|
|
|
|
echo " By default the current user will be used."
|
2018-09-29 01:25:16 +00:00
|
|
|
echo "DRIVER_OVERRIDE Disable automatic vfio-pci/uio_pci_generic selection and forcefully"
|
|
|
|
echo " bind devices to the given driver."
|
2019-02-11 19:50:08 +00:00
|
|
|
echo " E.g. DRIVER_OVERRIDE=uio_pci_generic or DRIVER_OVERRIDE=/home/public/dpdk/build/kmod/igb_uio.ko"
|
2020-09-02 13:08:38 +00:00
|
|
|
echo "PCI_BLOCK_SYNC_ON_RESET"
|
|
|
|
echo " If set in the environment, the attempt to wait for block devices associated"
|
|
|
|
echo " with given PCI device will be made upon reset"
|
2018-01-15 18:49:30 +00:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2018-03-02 01:43:20 +00:00
|
|
|
# In monolithic kernels the lsmod won't work. So
|
2019-02-07 12:20:38 +00:00
|
|
|
# back that with a /sys/modules. We also check
|
|
|
|
# /sys/bus/pci/drivers/ as neither lsmod nor /sys/modules might
|
|
|
|
# contain needed info (like in Fedora-like OS).
|
2020-05-07 11:27:06 +00:00
|
|
|
function check_for_driver() {
|
2019-02-07 12:20:38 +00:00
|
|
|
if lsmod | grep -q ${1//-/_}; then
|
2018-03-02 01:43:20 +00:00
|
|
|
return 1
|
2019-02-07 12:20:38 +00:00
|
|
|
fi
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
if [[ -d /sys/module/${1} || -d \
|
|
|
|
/sys/module/${1//-/_} || -d \
|
|
|
|
/sys/bus/pci/drivers/${1} || -d \
|
|
|
|
/sys/bus/pci/drivers/${1//-/_} ]]; then
|
2019-02-07 12:20:38 +00:00
|
|
|
return 2
|
2018-03-02 01:43:20 +00:00
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2019-02-04 11:57:06 +00:00
|
|
|
function pci_dev_echo() {
|
|
|
|
local bdf="$1"
|
|
|
|
shift
|
2020-08-21 11:34:19 +00:00
|
|
|
echo "$bdf (${pci_ids_vendor["$bdf"]#0x} ${pci_ids_device["$bdf"]#0x}): $*"
|
2019-02-04 11:57:06 +00:00
|
|
|
}
|
|
|
|
|
2016-04-14 19:21:32 +00:00
|
|
|
function linux_bind_driver() {
|
|
|
|
bdf="$1"
|
|
|
|
driver_name="$2"
|
2020-09-02 12:53:42 +00:00
|
|
|
old_driver_name=${drivers_d["$bdf"]:-no driver}
|
2020-08-21 11:34:19 +00:00
|
|
|
ven_dev_id="${pci_ids_vendor["$bdf"]#0x} ${pci_ids_device["$bdf"]#0x}"
|
2016-04-14 19:21:32 +00:00
|
|
|
|
2020-09-02 12:53:42 +00:00
|
|
|
if [[ $driver_name == "$old_driver_name" ]]; then
|
|
|
|
pci_dev_echo "$bdf" "Already using the $old_driver_name driver"
|
|
|
|
return 0
|
2016-04-14 19:21:32 +00:00
|
|
|
fi
|
|
|
|
|
2020-09-08 16:02:30 +00:00
|
|
|
if [[ $old_driver_name != "no driver" ]]; then
|
|
|
|
echo "$ven_dev_id" > "/sys/bus/pci/devices/$bdf/driver/remove_id" 2> /dev/null || true
|
|
|
|
echo "$bdf" > "/sys/bus/pci/devices/$bdf/driver/unbind"
|
|
|
|
fi
|
2020-09-02 12:53:42 +00:00
|
|
|
|
2019-02-04 11:57:06 +00:00
|
|
|
pci_dev_echo "$bdf" "$old_driver_name -> $driver_name"
|
2016-04-14 19:21:32 +00:00
|
|
|
|
|
|
|
echo "$ven_dev_id" > "/sys/bus/pci/drivers/$driver_name/new_id" 2> /dev/null || true
|
|
|
|
echo "$bdf" > "/sys/bus/pci/drivers/$driver_name/bind" 2> /dev/null || true
|
2016-04-06 03:03:28 +00:00
|
|
|
|
2020-09-22 13:54:31 +00:00
|
|
|
if [[ $driver_name == uio_pci_generic && -e /sys/module/igb_uio ]]; then
|
|
|
|
# Check if the uio_pci_generic driver is broken as it might be in
|
|
|
|
# some 4.18.x kernels (see centos8 for instance) - if our device
|
|
|
|
# didn't get a proper uio entry, fallback to igb_uio
|
|
|
|
if [[ ! -e /sys/bus/pci/devices/$bdf/uio ]]; then
|
|
|
|
pci_dev_echo "$bdf" "uio_pci_generic potentially broken, moving to igb_uio"
|
|
|
|
drivers_d["$bdf"]="no driver"
|
|
|
|
# This call will override $driver_name for remaining devices as well
|
|
|
|
linux_bind_driver "$bdf" igb_uio
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-04-06 03:03:28 +00:00
|
|
|
iommu_group=$(basename $(readlink -f /sys/bus/pci/devices/$bdf/iommu_group))
|
|
|
|
if [ -e "/dev/vfio/$iommu_group" ]; then
|
2018-01-23 13:23:00 +00:00
|
|
|
if [ -n "$TARGET_USER" ]; then
|
2018-01-15 19:08:37 +00:00
|
|
|
chown "$TARGET_USER" "/dev/vfio/$iommu_group"
|
2016-11-29 21:26:42 +00:00
|
|
|
fi
|
2016-04-06 03:03:28 +00:00
|
|
|
fi
|
2016-04-14 19:21:32 +00:00
|
|
|
}
|
|
|
|
|
2017-10-13 15:32:39 +00:00
|
|
|
function linux_unbind_driver() {
|
2019-02-11 14:01:23 +00:00
|
|
|
local bdf="$1"
|
2019-10-24 13:58:04 +00:00
|
|
|
local ven_dev_id
|
2020-08-21 11:34:19 +00:00
|
|
|
ven_dev_id="${pci_ids_vendor["$bdf"]#0x} ${pci_ids_device["$bdf"]#0x}"
|
2020-09-02 12:53:42 +00:00
|
|
|
local old_driver_name=${drivers_d["$bdf"]:-no driver}
|
2017-10-13 15:32:39 +00:00
|
|
|
|
2020-09-02 12:53:42 +00:00
|
|
|
if [[ -e /sys/bus/pci/drivers/$old_driver_name ]]; then
|
|
|
|
echo "$ven_dev_id" > "/sys/bus/pci/drivers/$old_driver_name/remove_id" 2> /dev/null || true
|
|
|
|
echo "$bdf" > "/sys/bus/pci/drivers/$old_driver_name/unbind"
|
2017-10-13 15:32:39 +00:00
|
|
|
fi
|
|
|
|
|
2019-02-11 14:01:23 +00:00
|
|
|
pci_dev_echo "$bdf" "$old_driver_name -> no driver"
|
2017-10-13 15:32:39 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 13:09:58 +00:00
|
|
|
function linux_hugetlbfs_mounts() {
|
2017-07-05 23:39:28 +00:00
|
|
|
mount | grep ' type hugetlbfs ' | awk '{ print $3 }'
|
2017-03-28 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
2020-08-21 10:42:35 +00:00
|
|
|
function get_block_dev_from_bdf() {
|
|
|
|
local bdf=$1
|
|
|
|
local block
|
2019-06-12 08:06:35 +00:00
|
|
|
|
2020-08-21 10:42:35 +00:00
|
|
|
for block in /sys/block/*; do
|
|
|
|
if [[ $(readlink -f "$block/device") == *"/$bdf/"* ]]; then
|
|
|
|
echo "${block##*/}"
|
|
|
|
return 0
|
2017-10-13 17:19:43 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-08-21 10:42:35 +00:00
|
|
|
function get_mounted_part_dev_from_bdf_block() {
|
|
|
|
local bdf=$1
|
|
|
|
local blocks block part
|
2018-01-05 08:54:39 +00:00
|
|
|
|
2020-08-21 10:42:35 +00:00
|
|
|
blocks=($(get_block_dev_from_bdf "$bdf"))
|
2018-01-05 08:54:39 +00:00
|
|
|
|
2020-08-21 10:42:35 +00:00
|
|
|
for block in "${blocks[@]}"; do
|
|
|
|
for part in "/sys/block/$block/$block"*; do
|
2020-09-03 11:37:07 +00:00
|
|
|
[[ -b /dev/${part##*/} ]] || continue
|
|
|
|
if [[ $(< /proc/self/mountinfo) == *" $(< "$part/dev") "* ]]; then
|
2020-08-21 10:42:35 +00:00
|
|
|
echo "${part##*/}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
2018-01-04 21:16:30 +00:00
|
|
|
}
|
|
|
|
|
2020-08-21 10:15:13 +00:00
|
|
|
function collect_devices() {
|
|
|
|
# NVMe, IOAT, IDXD, VIRTIO, VMD
|
|
|
|
|
2020-09-02 12:53:42 +00:00
|
|
|
local ids dev_type dev_id bdf bdfs in_use driver
|
2020-08-21 10:15:13 +00:00
|
|
|
|
|
|
|
ids+="PCI_DEVICE_ID_INTEL_IOAT"
|
|
|
|
ids+="|PCI_DEVICE_ID_INTEL_IDXD"
|
|
|
|
ids+="|PCI_DEVICE_ID_VIRTIO"
|
|
|
|
ids+="|PCI_DEVICE_ID_INTEL_VMD"
|
|
|
|
ids+="|SPDK_PCI_CLASS_NVME"
|
|
|
|
|
2020-09-02 12:53:42 +00:00
|
|
|
local -gA nvme_d ioat_d idxd_d virtio_d vmd_d all_devices_d drivers_d
|
2020-08-21 10:15:13 +00:00
|
|
|
|
|
|
|
while read -r _ dev_type dev_id; do
|
|
|
|
bdfs=(${pci_bus_cache["0x8086:$dev_id"]})
|
|
|
|
[[ $dev_type == *NVME* ]] && bdfs=(${pci_bus_cache["$dev_id"]})
|
|
|
|
[[ $dev_type == *VIRT* ]] && bdfs=(${pci_bus_cache["0x1af4:$dev_id"]})
|
2020-08-21 11:34:19 +00:00
|
|
|
[[ $dev_type =~ (NVME|IOAT|IDXD|VIRTIO|VMD) ]] && dev_type=${BASH_REMATCH[1],,}
|
2020-08-21 10:15:13 +00:00
|
|
|
for bdf in "${bdfs[@]}"; do
|
2020-08-21 11:34:19 +00:00
|
|
|
in_use=0
|
2020-09-25 08:13:50 +00:00
|
|
|
if [[ $1 != status ]]; then
|
|
|
|
if ! pci_can_use "$bdf"; then
|
|
|
|
pci_dev_echo "$bdf" "Skipping denied controller at $bdf"
|
2020-08-21 11:34:19 +00:00
|
|
|
in_use=1
|
|
|
|
fi
|
2020-09-25 08:13:50 +00:00
|
|
|
if [[ $dev_type == nvme || $dev_type == virtio ]]; then
|
|
|
|
if ! verify_bdf_mounts "$bdf"; then
|
|
|
|
in_use=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [[ $dev_type == vmd ]]; then
|
|
|
|
if [[ $PCI_WHITELIST != *"$bdf"* ]]; then
|
|
|
|
pci_dev_echo "$bdf" "Skipping not allowed VMD controller at $bdf"
|
|
|
|
in_use=1
|
|
|
|
fi
|
|
|
|
fi
|
2020-08-21 11:34:19 +00:00
|
|
|
fi
|
|
|
|
eval "${dev_type}_d[$bdf]=$in_use"
|
|
|
|
all_devices_d["$bdf"]=$in_use
|
2020-09-02 12:53:42 +00:00
|
|
|
if [[ -e /sys/bus/pci/devices/$bdf/driver ]]; then
|
|
|
|
driver=$(readlink -f "/sys/bus/pci/devices/$bdf/driver")
|
|
|
|
drivers_d["$bdf"]=${driver##*/}
|
|
|
|
fi
|
2020-08-21 10:15:13 +00:00
|
|
|
done
|
|
|
|
done < <(grep -E "$ids" "$rootdir/include/spdk/pci_ids.h")
|
|
|
|
}
|
|
|
|
|
2020-08-21 10:50:03 +00:00
|
|
|
function collect_driver() {
|
|
|
|
local bdf=$1
|
|
|
|
local override_driver=$2
|
|
|
|
local drivers driver
|
|
|
|
|
|
|
|
[[ -e /sys/bus/pci/devices/$bdf/modalias ]] || return 1
|
|
|
|
if drivers=($(modprobe -R "$(< "/sys/bus/pci/devices/$bdf/modalias")")); then
|
|
|
|
# Pick first entry in case multiple aliases are bound to a driver.
|
|
|
|
driver=$(readlink -f "/sys/module/${drivers[0]}/drivers/pci:"*)
|
|
|
|
driver=${driver##*/}
|
|
|
|
else
|
|
|
|
driver=$override_driver
|
|
|
|
fi 2> /dev/null
|
|
|
|
echo "$driver"
|
|
|
|
}
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
function verify_bdf_mounts() {
|
|
|
|
local bdf=$1
|
|
|
|
local blknames=($(get_mounted_part_dev_from_bdf_block "$bdf"))
|
|
|
|
|
|
|
|
if ((${#blknames[@]} > 0)); then
|
|
|
|
for name in "${blknames[@]}"; do
|
|
|
|
pci_dev_echo "$bdf" "Active mountpoints on /dev/$name, so not binding PCI dev"
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function configure_linux_pci() {
|
2019-02-11 19:50:08 +00:00
|
|
|
local driver_path=""
|
|
|
|
driver_name=""
|
2020-09-22 13:54:31 +00:00
|
|
|
igb_uio_fallback=""
|
|
|
|
|
|
|
|
# igb_uio is a common driver to override with and it depends on uio.
|
|
|
|
modprobe uio
|
|
|
|
if [[ -r "$rootdir/dpdk/build-tmp/kernel/linux/igb_uio/igb_uio.ko" ]]; then
|
|
|
|
igb_uio_fallback=$rootdir/dpdk/build-tmp/kernel/linux/igb_uio/igb_uio.ko
|
|
|
|
insmod "$igb_uio_fallback" || true
|
|
|
|
fi
|
|
|
|
|
2019-02-11 19:50:08 +00:00
|
|
|
if [[ -n "${DRIVER_OVERRIDE}" ]]; then
|
2020-02-11 20:11:05 +00:00
|
|
|
driver_path="$DRIVER_OVERRIDE"
|
2019-02-11 19:50:08 +00:00
|
|
|
driver_name="${DRIVER_OVERRIDE##*/}"
|
2020-02-11 20:11:05 +00:00
|
|
|
# modprobe and the sysfs don't use the .ko suffix.
|
|
|
|
driver_name=${driver_name%.ko}
|
2019-02-11 19:50:08 +00:00
|
|
|
# path = name -> there is no path
|
|
|
|
if [[ "$driver_path" = "$driver_name" ]]; then
|
|
|
|
driver_path=""
|
2018-09-29 01:25:16 +00:00
|
|
|
fi
|
2020-05-07 11:27:06 +00:00
|
|
|
elif [[ -n "$(ls /sys/kernel/iommu_groups)" || (-e \
|
|
|
|
/sys/module/vfio/parameters/enable_unsafe_noiommu_mode && \
|
|
|
|
"$(cat /sys/module/vfio/parameters/enable_unsafe_noiommu_mode)" == "Y") ]]; then
|
2019-02-11 19:50:08 +00:00
|
|
|
driver_name=vfio-pci
|
2020-05-07 11:27:06 +00:00
|
|
|
elif modinfo uio_pci_generic > /dev/null 2>&1; then
|
2019-02-11 19:50:08 +00:00
|
|
|
driver_name=uio_pci_generic
|
2020-09-22 13:54:31 +00:00
|
|
|
elif [[ -e $igb_uio_fallback ]]; then
|
2019-02-11 19:50:08 +00:00
|
|
|
driver_name="igb_uio"
|
|
|
|
echo "WARNING: uio_pci_generic not detected - using $driver_name"
|
|
|
|
else
|
|
|
|
echo "No valid drivers found [vfio-pci, uio_pci_generic, igb_uio]. Please either enable the vfio-pci or uio_pci_generic"
|
|
|
|
echo "kernel modules, or have SPDK build the igb_uio driver by running ./configure --with-igb-uio-driver and recompiling."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# modprobe assumes the directory of the module. If the user passes in a path, we should use insmod
|
|
|
|
if [[ -n "$driver_path" ]]; then
|
|
|
|
insmod $driver_path || true
|
2018-09-29 01:25:16 +00:00
|
|
|
else
|
2019-02-11 19:50:08 +00:00
|
|
|
modprobe $driver_name
|
2016-02-19 21:11:08 +00:00
|
|
|
fi
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!all_devices_d[@]}"; do
|
|
|
|
if ((all_devices_d["$bdf"] == 0)); then
|
2020-08-21 11:41:40 +00:00
|
|
|
if [[ -n ${nvme_d["$bdf"]} ]]; then
|
|
|
|
# Some nvme controllers may take significant amount of time while being
|
|
|
|
# unbound from the driver. Put that task into background to speed up the
|
|
|
|
# whole process. Currently this is done only for the devices bound to the
|
|
|
|
# nvme driver as other, i.e., ioatdma's, trigger a kernel BUG when being
|
|
|
|
# unbound in parallel. See https://bugzilla.kernel.org/show_bug.cgi?id=209041.
|
|
|
|
linux_bind_driver "$bdf" "$driver_name" &
|
|
|
|
else
|
|
|
|
linux_bind_driver "$bdf" "$driver_name"
|
|
|
|
fi
|
2017-10-13 17:19:43 +00:00
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
done
|
2020-08-21 11:41:40 +00:00
|
|
|
wait
|
2016-02-19 21:11:08 +00:00
|
|
|
|
|
|
|
echo "1" > "/sys/bus/pci/rescan"
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function cleanup_linux() {
|
2018-08-16 06:05:00 +00:00
|
|
|
shopt -s extglob nullglob
|
|
|
|
dirs_to_clean=""
|
|
|
|
dirs_to_clean="$(echo {/var/run,/tmp}/dpdk/spdk{,_pid}+([0-9])) "
|
|
|
|
if [[ -d $XDG_RUNTIME_DIR && $XDG_RUNTIME_DIR != *" "* ]]; then
|
|
|
|
dirs_to_clean+="$(readlink -e assert_not_empty $XDG_RUNTIME_DIR/dpdk/spdk{,_pid}+([0-9]) || true) "
|
|
|
|
fi
|
|
|
|
|
|
|
|
files_to_clean=""
|
|
|
|
for dir in $dirs_to_clean; do
|
|
|
|
files_to_clean+="$(echo $dir/*) "
|
|
|
|
done
|
|
|
|
shopt -u extglob nullglob
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
files_to_clean+="$(ls -1 /dev/shm/* \
|
|
|
|
| grep -E '(spdk_tgt|iscsi|vhost|nvmf|rocksdb|bdevio|bdevperf|vhost_fuzz|nvme_fuzz)_trace|spdk_iscsi_conns' || true) "
|
2018-07-17 19:43:33 +00:00
|
|
|
files_to_clean="$(readlink -e assert_not_empty $files_to_clean || true)"
|
|
|
|
if [[ -z "$files_to_clean" ]]; then
|
|
|
|
echo "Clean"
|
2020-05-07 11:27:06 +00:00
|
|
|
return 0
|
2018-07-17 19:43:33 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
shopt -s extglob
|
|
|
|
for fd_dir in $(echo /proc/+([0-9])); do
|
|
|
|
opened_files+="$(readlink -e assert_not_empty $fd_dir/fd/* || true)"
|
|
|
|
done
|
|
|
|
shopt -u extglob
|
|
|
|
|
|
|
|
if [[ -z "$opened_files" ]]; then
|
|
|
|
echo "Can't get list of opened files!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo 'Cleaning'
|
|
|
|
for f in $files_to_clean; do
|
2019-07-04 12:52:35 +00:00
|
|
|
if ! echo "$opened_files" | grep -E -q "^$f\$"; then
|
2018-07-17 19:43:33 +00:00
|
|
|
echo "Removing: $f"
|
|
|
|
rm $f
|
|
|
|
else
|
|
|
|
echo "Still open: $f"
|
|
|
|
fi
|
|
|
|
done
|
2018-08-16 06:05:00 +00:00
|
|
|
|
|
|
|
for dir in $dirs_to_clean; do
|
2020-05-07 11:27:06 +00:00
|
|
|
if ! echo "$opened_files" | grep -E -q "^$dir\$"; then
|
|
|
|
echo "Removing: $dir"
|
|
|
|
rmdir $dir
|
|
|
|
else
|
|
|
|
echo "Still open: $dir"
|
|
|
|
fi
|
2018-08-16 06:05:00 +00:00
|
|
|
done
|
2018-07-17 19:43:33 +00:00
|
|
|
echo "Clean"
|
|
|
|
|
2018-08-16 06:05:00 +00:00
|
|
|
unset dirs_to_clean files_to_clean opened_files
|
2018-07-17 19:43:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function configure_linux() {
|
2018-01-23 14:57:26 +00:00
|
|
|
configure_linux_pci
|
2018-01-23 13:09:58 +00:00
|
|
|
hugetlbfs_mounts=$(linux_hugetlbfs_mounts)
|
2017-03-28 17:09:31 +00:00
|
|
|
|
2018-01-23 13:09:58 +00:00
|
|
|
if [ -z "$hugetlbfs_mounts" ]; then
|
|
|
|
hugetlbfs_mounts=/mnt/huge
|
|
|
|
echo "Mounting hugetlbfs at $hugetlbfs_mounts"
|
|
|
|
mkdir -p "$hugetlbfs_mounts"
|
|
|
|
mount -t hugetlbfs nodev "$hugetlbfs_mounts"
|
2016-04-14 20:22:11 +00:00
|
|
|
fi
|
2017-10-27 17:26:58 +00:00
|
|
|
|
|
|
|
if [ -z "$HUGENODE" ]; then
|
|
|
|
hugepages_target="/proc/sys/vm/nr_hugepages"
|
|
|
|
else
|
|
|
|
hugepages_target="/sys/devices/system/node/node${HUGENODE}/hugepages/hugepages-${HUGEPGSZ}kB/nr_hugepages"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$NRHUGE" > "$hugepages_target"
|
2019-07-03 15:12:39 +00:00
|
|
|
allocated_hugepages=$(cat $hugepages_target)
|
2017-10-27 17:56:36 +00:00
|
|
|
if [ "$allocated_hugepages" -lt "$NRHUGE" ]; then
|
|
|
|
echo ""
|
|
|
|
echo "## ERROR: requested $NRHUGE hugepages but only $allocated_hugepages could be allocated."
|
|
|
|
echo "## Memory might be heavily fragmented. Please try flushing the system cache, or reboot the machine."
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-04-06 03:03:28 +00:00
|
|
|
|
|
|
|
if [ "$driver_name" = "vfio-pci" ]; then
|
2018-01-23 13:23:00 +00:00
|
|
|
if [ -n "$TARGET_USER" ]; then
|
2018-01-23 13:09:58 +00:00
|
|
|
for mount in $hugetlbfs_mounts; do
|
|
|
|
chown "$TARGET_USER" "$mount"
|
|
|
|
chmod g+w "$mount"
|
|
|
|
done
|
2016-04-06 03:03:28 +00:00
|
|
|
|
2020-04-21 13:09:15 +00:00
|
|
|
MEMLOCK_AMNT=$(su "$TARGET_USER" -c "ulimit -l")
|
|
|
|
if [[ $MEMLOCK_AMNT != "unlimited" ]]; then
|
|
|
|
MEMLOCK_MB=$((MEMLOCK_AMNT / 1024))
|
|
|
|
cat <<- MEMLOCK
|
|
|
|
"$TARGET_USER" user memlock limit: $MEMLOCK_MB MB
|
|
|
|
|
|
|
|
This is the maximum amount of memory you will be
|
|
|
|
able to use with DPDK and VFIO if run as user "$TARGET_USER".
|
|
|
|
To change this, please adjust limits.conf memlock limit for user "$TARGET_USER".
|
|
|
|
MEMLOCK
|
|
|
|
if ((MEMLOCK_AMNT < 65536)); then
|
|
|
|
echo ""
|
|
|
|
echo "## WARNING: memlock limit is less than 64MB"
|
|
|
|
echo -n "## DPDK with VFIO may not be able to initialize "
|
|
|
|
echo "if run as user \"$TARGET_USER\"."
|
|
|
|
fi
|
2016-04-06 03:03:28 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2019-08-19 13:43:13 +00:00
|
|
|
|
|
|
|
if [ ! -f /dev/cpu/0/msr ]; then
|
|
|
|
# Some distros build msr as a module. Make sure it's loaded to ensure
|
|
|
|
# DPDK can easily figure out the TSC rate rather than relying on 100ms
|
|
|
|
# sleeps.
|
|
|
|
modprobe msr || true
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function reset_linux_pci() {
|
2017-12-27 15:22:48 +00:00
|
|
|
# virtio
|
2017-10-13 15:32:39 +00:00
|
|
|
# TODO: check if virtio-pci is loaded first and just unbind if it is not loaded
|
|
|
|
# Requires some more investigation - for example, some kernels do not seem to have
|
|
|
|
# virtio-pci but just virtio_scsi instead. Also need to make sure we get the
|
|
|
|
# underscore vs. dash right in the virtio_scsi name.
|
2017-05-30 21:13:50 +00:00
|
|
|
modprobe virtio-pci || true
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!all_devices_d[@]}"; do
|
|
|
|
((all_devices_d["$bdf"] == 0)) || continue
|
|
|
|
|
2020-09-03 11:46:56 +00:00
|
|
|
[[ -n ${nvme_d["$bdf"]} ]] && fallback_driver=nvme
|
|
|
|
[[ -n ${ioat_d["$bdf"]} ]] && fallback_driver=ioatdma
|
|
|
|
[[ -n ${idxd_d["$bdf"]} ]] && fallback_driver=idxd
|
|
|
|
[[ -n ${virtio_d["$bdf"]} ]] && fallback_driver=virtio-pci
|
|
|
|
[[ -n ${vmd_d["$bdf"]} ]] && fallback_driver=vmd
|
|
|
|
driver=$(collect_driver "$bdf" "$fallback_driver")
|
2020-08-21 11:34:19 +00:00
|
|
|
|
|
|
|
if ! check_for_driver "$driver"; then
|
|
|
|
linux_bind_driver "$bdf" "$driver"
|
|
|
|
else
|
|
|
|
linux_unbind_driver "$bdf"
|
|
|
|
fi
|
|
|
|
done
|
2019-05-24 09:04:51 +00:00
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
echo "1" > "/sys/bus/pci/rescan"
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function reset_linux() {
|
2018-01-23 14:57:26 +00:00
|
|
|
reset_linux_pci
|
2018-01-23 13:09:58 +00:00
|
|
|
for mount in $(linux_hugetlbfs_mounts); do
|
|
|
|
rm -f "$mount"/spdk*map_*
|
|
|
|
done
|
2017-09-25 17:55:07 +00:00
|
|
|
rm -f /run/.spdk*
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function status_linux() {
|
2018-03-02 15:18:38 +00:00
|
|
|
echo "Hugepages"
|
2020-05-07 11:27:06 +00:00
|
|
|
printf "%-6s %10s %8s / %6s\n" "node" "hugesize" "free" "total"
|
2018-03-02 15:18:38 +00:00
|
|
|
|
|
|
|
numa_nodes=0
|
|
|
|
shopt -s nullglob
|
2020-05-07 08:30:19 +00:00
|
|
|
for path in /sys/devices/system/node/node*/hugepages/hugepages-*/; do
|
2018-03-02 15:18:38 +00:00
|
|
|
numa_nodes=$((numa_nodes + 1))
|
2019-07-03 15:12:39 +00:00
|
|
|
free_pages=$(cat $path/free_hugepages)
|
|
|
|
all_pages=$(cat $path/nr_hugepages)
|
2018-03-02 15:18:38 +00:00
|
|
|
|
|
|
|
[[ $path =~ (node[0-9]+)/hugepages/hugepages-([0-9]+kB) ]]
|
|
|
|
|
|
|
|
node=${BASH_REMATCH[1]}
|
|
|
|
huge_size=${BASH_REMATCH[2]}
|
|
|
|
|
|
|
|
printf "%-6s %10s %8s / %6s\n" $node $huge_size $free_pages $all_pages
|
|
|
|
done
|
|
|
|
shopt -u nullglob
|
|
|
|
|
|
|
|
# fall back to system-wide hugepages
|
|
|
|
if [ "$numa_nodes" = "0" ]; then
|
2019-07-03 15:12:39 +00:00
|
|
|
free_pages=$(grep HugePages_Free /proc/meminfo | awk '{ print $2 }')
|
|
|
|
all_pages=$(grep HugePages_Total /proc/meminfo | awk '{ print $2 }')
|
2018-03-02 15:18:38 +00:00
|
|
|
node="-"
|
|
|
|
huge_size="$HUGEPGSZ"
|
|
|
|
|
|
|
|
printf "%-6s %10s %8s / %6s\n" $node $huge_size $free_pages $all_pages
|
|
|
|
fi
|
|
|
|
|
2020-09-02 14:47:35 +00:00
|
|
|
echo -e "\nBDF\t\tVendor\tDevice\tNUMA\tDriver\t\tDevice name\n"
|
2017-01-30 13:38:44 +00:00
|
|
|
echo "NVMe devices"
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!nvme_d[@]}"; do
|
2020-09-02 12:53:42 +00:00
|
|
|
driver=${drivers_d["$bdf"]}
|
2019-03-12 09:39:09 +00:00
|
|
|
if [ "$numa_nodes" = "0" ]; then
|
|
|
|
node="-"
|
|
|
|
else
|
|
|
|
node=$(cat /sys/bus/pci/devices/$bdf/numa_node)
|
2020-05-07 08:40:44 +00:00
|
|
|
if ((node == -1)); then
|
|
|
|
node=unknown
|
|
|
|
fi
|
2019-03-12 09:39:09 +00:00
|
|
|
fi
|
2019-10-23 13:04:25 +00:00
|
|
|
if [ "$driver" = "nvme" ] && [ -d /sys/bus/pci/devices/$bdf/nvme ]; then
|
2020-05-07 11:27:06 +00:00
|
|
|
name="\t"$(ls /sys/bus/pci/devices/$bdf/nvme)
|
2017-01-30 13:38:44 +00:00
|
|
|
else
|
2020-05-07 11:27:06 +00:00
|
|
|
name="-"
|
2017-01-30 13:38:44 +00:00
|
|
|
fi
|
2020-08-21 11:34:19 +00:00
|
|
|
echo -e "$bdf\t${pci_ids_vendor["$bdf"]#0x}\t${pci_ids_device["$bdf"]#0x}\t$node\t${driver:--}\t\t$name"
|
2017-01-30 13:38:44 +00:00
|
|
|
done
|
|
|
|
|
2019-02-04 11:57:06 +00:00
|
|
|
echo ""
|
2020-04-29 23:11:10 +00:00
|
|
|
echo "I/OAT Engine"
|
2017-01-30 13:38:44 +00:00
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!ioat_d[@]}"; do
|
2020-09-02 12:53:42 +00:00
|
|
|
driver=${drivers_d["$bdf"]}
|
2020-08-21 11:34:19 +00:00
|
|
|
if [ "$numa_nodes" = "0" ]; then
|
|
|
|
node="-"
|
|
|
|
else
|
|
|
|
node=$(cat /sys/bus/pci/devices/$bdf/numa_node)
|
|
|
|
if ((node == -1)); then
|
|
|
|
node=unknown
|
2019-03-12 09:39:09 +00:00
|
|
|
fi
|
2020-08-21 11:34:19 +00:00
|
|
|
fi
|
|
|
|
echo -e "$bdf\t${pci_ids_vendor["$bdf"]#0x}\t${pci_ids_device["$bdf"]#0x}\t$node\t${driver:--}"
|
2017-01-30 13:38:44 +00:00
|
|
|
done
|
2017-05-30 21:13:50 +00:00
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
echo ""
|
2020-04-29 23:11:10 +00:00
|
|
|
echo "IDXD Engine"
|
2020-05-07 11:27:06 +00:00
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!idxd_d[@]}"; do
|
2020-09-02 12:53:42 +00:00
|
|
|
driver=${drivers_d["$bdf"]}
|
2020-08-21 11:34:19 +00:00
|
|
|
if [ "$numa_nodes" = "0" ]; then
|
|
|
|
node="-"
|
|
|
|
else
|
|
|
|
node=$(cat /sys/bus/pci/devices/$bdf/numa_node)
|
|
|
|
fi
|
|
|
|
echo -e "$bdf\t${pci_ids_vendor["$bdf"]#0x}\t${pci_ids_device["$bdf"]#0x}\t$node\t${driver:--}"
|
2020-05-07 11:27:06 +00:00
|
|
|
done
|
2020-04-07 16:20:35 +00:00
|
|
|
|
2019-02-04 11:57:06 +00:00
|
|
|
echo ""
|
2017-05-30 21:13:50 +00:00
|
|
|
echo "virtio"
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!virtio_d[@]}"; do
|
2020-09-02 12:53:42 +00:00
|
|
|
driver=${drivers_d["$bdf"]}
|
2020-08-21 11:34:19 +00:00
|
|
|
if [ "$numa_nodes" = "0" ]; then
|
|
|
|
node="-"
|
|
|
|
else
|
|
|
|
node=$(cat /sys/bus/pci/devices/$bdf/numa_node)
|
|
|
|
if ((node == -1)); then
|
|
|
|
node=unknown
|
2019-03-12 09:39:09 +00:00
|
|
|
fi
|
2020-08-21 11:34:19 +00:00
|
|
|
fi
|
|
|
|
blknames=($(get_mounted_part_dev_from_bdf_block "$bdf"))
|
|
|
|
echo -e "$bdf\t${pci_ids_vendor["$bdf"]#0x}\t${pci_ids_device["$bdf"]#0x}\t$node\t\t${driver:--}\t\t" "${blknames[@]}"
|
2017-05-30 21:13:50 +00:00
|
|
|
done
|
2019-05-24 09:04:51 +00:00
|
|
|
|
2020-06-03 17:08:09 +00:00
|
|
|
echo ""
|
2019-05-24 09:04:51 +00:00
|
|
|
echo "VMD"
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for bdf in "${!vmd_d[@]}"; do
|
2020-09-02 12:53:42 +00:00
|
|
|
driver=${drivers_d["$bdf"]}
|
2020-08-21 11:34:19 +00:00
|
|
|
node=$(cat /sys/bus/pci/devices/$bdf/numa_node)
|
|
|
|
if ((node == -1)); then
|
|
|
|
node=unknown
|
|
|
|
fi
|
|
|
|
echo -e "$bdf\t$node\t\t$driver"
|
2019-05-24 09:04:51 +00:00
|
|
|
done
|
2017-01-30 13:38:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 21:28:52 +00:00
|
|
|
function status_freebsd() {
|
2020-08-21 11:34:19 +00:00
|
|
|
local pci
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
status_print() (
|
|
|
|
local dev driver
|
|
|
|
|
|
|
|
echo -e "BDF\t\tVendor\tDevice\tDriver"
|
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
for pci; do
|
|
|
|
driver=$(pciconf -l "pci$pci")
|
|
|
|
driver=${driver%@*}
|
|
|
|
printf '%s\t%s\t%s\t%s\n' \
|
|
|
|
"$pci" \
|
|
|
|
"${pci_ids_vendor["$pci"]}" \
|
|
|
|
"${pci_ids_device["$pci"]}" \
|
|
|
|
"$driver"
|
2020-05-06 21:28:52 +00:00
|
|
|
done
|
|
|
|
)
|
|
|
|
|
|
|
|
local contigmem=present
|
2020-10-14 09:36:10 +00:00
|
|
|
local contigmem_buffer_size
|
|
|
|
local contigmem_num_buffers
|
|
|
|
|
2020-05-06 21:28:52 +00:00
|
|
|
if ! kldstat -q -m contigmem; then
|
|
|
|
contigmem="not present"
|
|
|
|
fi
|
2020-10-14 09:36:10 +00:00
|
|
|
if ! contigmem_buffer_size=$(kenv hw.contigmem.buffer_size 2> /dev/null); then
|
|
|
|
contigmem_buffer_size="not set"
|
|
|
|
fi
|
|
|
|
if ! contigmem_num_buffers=$(kenv hw.contigmem.num_buffers 2> /dev/null); then
|
|
|
|
contigmem_num_buffers="not set"
|
|
|
|
fi
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
cat <<- BSD_INFO
|
|
|
|
Contigmem ($contigmem)
|
2020-10-14 09:36:10 +00:00
|
|
|
Buffer Size: $contigmem_buffer_size
|
|
|
|
Num Buffers: $contigmem_num_buffers
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
NVMe devices
|
2020-08-21 11:34:19 +00:00
|
|
|
$(status_print "${!nvme_d[@]}")
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
I/IOAT DMA
|
2020-08-21 11:34:19 +00:00
|
|
|
$(status_print "${!ioat_d[@]}")
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
IDXD DMA
|
2020-08-21 11:34:19 +00:00
|
|
|
$(status_print "${!idxd_d[@]}")
|
2020-05-06 21:28:52 +00:00
|
|
|
|
|
|
|
VMD
|
2020-08-21 11:34:19 +00:00
|
|
|
$(status_print "${!vmd_d[@]}")
|
2020-05-06 21:28:52 +00:00
|
|
|
BSD_INFO
|
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function configure_freebsd_pci() {
|
scripts/common: Introduce cache for the pci devices
Expose a cache of pci devices in form of an assoc array that could be
looked up during the runtime of a script like setup.sh.
In case of setup.sh, caching speeds up execution quite visibly:
config run, no caching:
real 0m4.488s
user 0m1.440s
sys 0m1.260s
config run, caching in use:
real 0m2.876s
user 0m0.365s
sys 0m0.420s
Note that for initial config runs, binding controllers to proper
drivers is the actual bottleneck.
status run, no caching:
real 0m1.877s
user 0m1.252s
sys 0m0.984s
status run, caching in use:
real 0m0.371s
user 0m0.242s
sys 0m0.204s
reset run, no caching:
real 0m2.559s
user 0m1.409s
sys 0m1.322s
reset run, caching in use:
real 0m0.960s
user 0m0.432s
sys 0m0.419s
Additionally, in case common tools, e.g. lspci, are missing, fallback to
sysfs to pick all needed devices from the pci bus. Targeted for Linux
systems only.
Change-Id: Ib69ef724b9f09eca0cbb9b88f1c363edc1efd5dc
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1845
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2020-04-14 13:43:32 +00:00
|
|
|
local BDFS
|
2016-08-08 22:57:49 +00:00
|
|
|
|
2020-08-21 11:34:19 +00:00
|
|
|
BDFS+=("${!nvme_d[@]}")
|
|
|
|
BDFS+=("${!ioat_d[@]}")
|
|
|
|
BDFS+=("${!idxd_d[@]}")
|
|
|
|
BDFS+=("${!vmd_d[@]}")
|
2016-08-08 22:57:49 +00:00
|
|
|
|
scripts/common: Introduce cache for the pci devices
Expose a cache of pci devices in form of an assoc array that could be
looked up during the runtime of a script like setup.sh.
In case of setup.sh, caching speeds up execution quite visibly:
config run, no caching:
real 0m4.488s
user 0m1.440s
sys 0m1.260s
config run, caching in use:
real 0m2.876s
user 0m0.365s
sys 0m0.420s
Note that for initial config runs, binding controllers to proper
drivers is the actual bottleneck.
status run, no caching:
real 0m1.877s
user 0m1.252s
sys 0m0.984s
status run, caching in use:
real 0m0.371s
user 0m0.242s
sys 0m0.204s
reset run, no caching:
real 0m2.559s
user 0m1.409s
sys 0m1.322s
reset run, caching in use:
real 0m0.960s
user 0m0.432s
sys 0m0.419s
Additionally, in case common tools, e.g. lspci, are missing, fallback to
sysfs to pick all needed devices from the pci bus. Targeted for Linux
systems only.
Change-Id: Ib69ef724b9f09eca0cbb9b88f1c363edc1efd5dc
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1845
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2020-04-14 13:43:32 +00:00
|
|
|
# Drop the domain part from all the addresses
|
|
|
|
BDFS=("${BDFS[@]#*:}")
|
2016-08-08 22:57:49 +00:00
|
|
|
|
scripts/common: Introduce cache for the pci devices
Expose a cache of pci devices in form of an assoc array that could be
looked up during the runtime of a script like setup.sh.
In case of setup.sh, caching speeds up execution quite visibly:
config run, no caching:
real 0m4.488s
user 0m1.440s
sys 0m1.260s
config run, caching in use:
real 0m2.876s
user 0m0.365s
sys 0m0.420s
Note that for initial config runs, binding controllers to proper
drivers is the actual bottleneck.
status run, no caching:
real 0m1.877s
user 0m1.252s
sys 0m0.984s
status run, caching in use:
real 0m0.371s
user 0m0.242s
sys 0m0.204s
reset run, no caching:
real 0m2.559s
user 0m1.409s
sys 0m1.322s
reset run, caching in use:
real 0m0.960s
user 0m0.432s
sys 0m0.419s
Additionally, in case common tools, e.g. lspci, are missing, fallback to
sysfs to pick all needed devices from the pci bus. Targeted for Linux
systems only.
Change-Id: Ib69ef724b9f09eca0cbb9b88f1c363edc1efd5dc
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1845
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2020-04-14 13:43:32 +00:00
|
|
|
local IFS=","
|
2016-02-19 21:11:08 +00:00
|
|
|
kldunload nic_uio.ko || true
|
scripts/common: Introduce cache for the pci devices
Expose a cache of pci devices in form of an assoc array that could be
looked up during the runtime of a script like setup.sh.
In case of setup.sh, caching speeds up execution quite visibly:
config run, no caching:
real 0m4.488s
user 0m1.440s
sys 0m1.260s
config run, caching in use:
real 0m2.876s
user 0m0.365s
sys 0m0.420s
Note that for initial config runs, binding controllers to proper
drivers is the actual bottleneck.
status run, no caching:
real 0m1.877s
user 0m1.252s
sys 0m0.984s
status run, caching in use:
real 0m0.371s
user 0m0.242s
sys 0m0.204s
reset run, no caching:
real 0m2.559s
user 0m1.409s
sys 0m1.322s
reset run, caching in use:
real 0m0.960s
user 0m0.432s
sys 0m0.419s
Additionally, in case common tools, e.g. lspci, are missing, fallback to
sysfs to pick all needed devices from the pci bus. Targeted for Linux
systems only.
Change-Id: Ib69ef724b9f09eca0cbb9b88f1c363edc1efd5dc
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1845
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2020-04-14 13:43:32 +00:00
|
|
|
kenv hw.nic_uio.bdfs="${BDFS[*]}"
|
2016-02-19 21:11:08 +00:00
|
|
|
kldload nic_uio.ko
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function configure_freebsd() {
|
2018-01-23 14:57:26 +00:00
|
|
|
configure_freebsd_pci
|
2018-05-23 15:48:46 +00:00
|
|
|
# If contigmem is already loaded but the HUGEMEM specified doesn't match the
|
|
|
|
# previous value, unload contigmem so that we can reload with the new value.
|
|
|
|
if kldstat -q -m contigmem; then
|
2020-10-14 08:36:41 +00:00
|
|
|
# contigmem may be loaded, but the kernel environment doesn't have to
|
|
|
|
# be necessarily set at this point. If it isn't, kenv will fail to
|
|
|
|
# pick up the hw. options. Handle it.
|
|
|
|
if ! contigmem_num_buffers=$(kenv hw.contigmem.num_buffers); then
|
|
|
|
contigmem_num_buffers=-1
|
|
|
|
fi 2> /dev/null
|
|
|
|
if ((contigmem_num_buffers != HUGEMEM / 256)); then
|
2018-05-23 15:48:46 +00:00
|
|
|
kldunload contigmem.ko
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if ! kldstat -q -m contigmem; then
|
|
|
|
kenv hw.contigmem.num_buffers=$((HUGEMEM / 256))
|
|
|
|
kenv hw.contigmem.buffer_size=$((256 * 1024 * 1024))
|
|
|
|
kldload contigmem.ko
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 11:27:06 +00:00
|
|
|
function reset_freebsd() {
|
2016-02-19 21:11:08 +00:00
|
|
|
kldunload contigmem.ko || true
|
2018-01-23 14:57:26 +00:00
|
|
|
kldunload nic_uio.ko || true
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
scripts/common: Introduce cache for the pci devices
Expose a cache of pci devices in form of an assoc array that could be
looked up during the runtime of a script like setup.sh.
In case of setup.sh, caching speeds up execution quite visibly:
config run, no caching:
real 0m4.488s
user 0m1.440s
sys 0m1.260s
config run, caching in use:
real 0m2.876s
user 0m0.365s
sys 0m0.420s
Note that for initial config runs, binding controllers to proper
drivers is the actual bottleneck.
status run, no caching:
real 0m1.877s
user 0m1.252s
sys 0m0.984s
status run, caching in use:
real 0m0.371s
user 0m0.242s
sys 0m0.204s
reset run, no caching:
real 0m2.559s
user 0m1.409s
sys 0m1.322s
reset run, caching in use:
real 0m0.960s
user 0m0.432s
sys 0m0.419s
Additionally, in case common tools, e.g. lspci, are missing, fallback to
sysfs to pick all needed devices from the pci bus. Targeted for Linux
systems only.
Change-Id: Ib69ef724b9f09eca0cbb9b88f1c363edc1efd5dc
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1845
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2020-04-14 13:43:32 +00:00
|
|
|
CMD=reset cache_pci_bus
|
|
|
|
|
2018-01-15 19:08:37 +00:00
|
|
|
mode=$1
|
2016-04-06 03:03:28 +00:00
|
|
|
|
2018-01-15 19:08:37 +00:00
|
|
|
if [ -z "$mode" ]; then
|
2016-02-19 21:11:08 +00:00
|
|
|
mode="config"
|
|
|
|
fi
|
|
|
|
|
2017-08-30 18:20:22 +00:00
|
|
|
: ${HUGEMEM:=2048}
|
2018-01-23 14:07:10 +00:00
|
|
|
: ${PCI_WHITELIST:=""}
|
2019-02-01 09:10:17 +00:00
|
|
|
: ${PCI_BLACKLIST:=""}
|
2018-01-23 14:07:10 +00:00
|
|
|
|
|
|
|
if [ -n "$NVME_WHITELIST" ]; then
|
|
|
|
PCI_WHITELIST="$PCI_WHITELIST $NVME_WHITELIST"
|
|
|
|
fi
|
|
|
|
|
2018-01-23 14:57:26 +00:00
|
|
|
if [ -n "$SKIP_PCI" ]; then
|
|
|
|
PCI_WHITELIST="none"
|
|
|
|
fi
|
|
|
|
|
2018-01-15 19:08:37 +00:00
|
|
|
if [ -z "$TARGET_USER" ]; then
|
|
|
|
TARGET_USER="$SUDO_USER"
|
|
|
|
if [ -z "$TARGET_USER" ]; then
|
2020-05-07 11:27:06 +00:00
|
|
|
TARGET_USER=$(logname 2> /dev/null) || true
|
2018-01-15 19:08:37 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-08-21 10:15:13 +00:00
|
|
|
collect_devices "$mode"
|
2020-09-02 13:08:38 +00:00
|
|
|
|
|
|
|
if [[ $mode == reset && $PCI_BLOCK_SYNC_ON_RESET == yes ]]; then
|
|
|
|
# Note that this will wait only for the first block device attached to
|
|
|
|
# a given storage controller. For nvme this may miss some of the devs
|
|
|
|
# in case multiple namespaces are being in place.
|
|
|
|
# FIXME: Wait for nvme controller(s) to be in live state and determine
|
|
|
|
# number of configured namespaces, build list of potential block devs
|
|
|
|
# and pass them to sync_dev_uevents. Is it worth the effort?
|
|
|
|
bdfs_to_wait_for=()
|
|
|
|
for bdf in "${!all_devices_d[@]}"; do
|
|
|
|
((all_devices_d["$bdf"] == 0)) || continue
|
|
|
|
if [[ -n ${nvme_d["$bdf"]} || -n ${virtio_d["$bdf"]} ]]; then
|
|
|
|
[[ $(collect_driver "$bdf") != "${drivers_d["$bdf"]}" ]] || continue
|
|
|
|
bdfs_to_wait_for+=("$bdf")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if ((${#bdfs_to_wait_for[@]} > 0)); then
|
|
|
|
echo "Waiting for block devices as requested"
|
|
|
|
export UEVENT_TIMEOUT=5 DEVPATH_LOOKUP=yes DEVPATH_SUBSYSTEM=pci
|
|
|
|
"$rootdir/scripts/sync_dev_uevents.sh" \
|
|
|
|
block/disk \
|
|
|
|
"${bdfs_to_wait_for[@]}" &
|
|
|
|
sync_pid=$!
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-05-10 11:04:32 +00:00
|
|
|
if [[ $os == Linux ]]; then
|
2020-05-07 11:27:06 +00:00
|
|
|
HUGEPGSZ=$(($(grep Hugepagesize /proc/meminfo | cut -d : -f 2 | tr -dc '0-9')))
|
|
|
|
HUGEPGSZ_MB=$((HUGEPGSZ / 1024))
|
|
|
|
: ${NRHUGE=$(((HUGEMEM + HUGEPGSZ_MB - 1) / HUGEPGSZ_MB))}
|
2017-08-30 18:20:22 +00:00
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
if [ "$mode" == "config" ]; then
|
|
|
|
configure_linux
|
2018-07-17 19:43:33 +00:00
|
|
|
elif [ "$mode" == "cleanup" ]; then
|
|
|
|
cleanup_linux
|
2016-02-19 21:11:08 +00:00
|
|
|
elif [ "$mode" == "reset" ]; then
|
|
|
|
reset_linux
|
2017-01-30 13:38:44 +00:00
|
|
|
elif [ "$mode" == "status" ]; then
|
|
|
|
status_linux
|
2018-01-15 18:49:30 +00:00
|
|
|
elif [ "$mode" == "help" ]; then
|
|
|
|
usage $0
|
|
|
|
else
|
|
|
|
usage $0 "Invalid argument '$mode'"
|
2016-02-19 21:11:08 +00:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ "$mode" == "config" ]; then
|
|
|
|
configure_freebsd
|
|
|
|
elif [ "$mode" == "reset" ]; then
|
|
|
|
reset_freebsd
|
2018-09-24 08:11:47 +00:00
|
|
|
elif [ "$mode" == "cleanup" ]; then
|
2020-05-10 11:04:32 +00:00
|
|
|
echo "setup.sh cleanup function not yet supported on $os"
|
2018-09-24 08:11:47 +00:00
|
|
|
elif [ "$mode" == "status" ]; then
|
2020-05-06 21:28:52 +00:00
|
|
|
status_freebsd
|
2018-01-15 18:49:30 +00:00
|
|
|
elif [ "$mode" == "help" ]; then
|
|
|
|
usage $0
|
|
|
|
else
|
|
|
|
usage $0 "Invalid argument '$mode'"
|
2016-02-19 21:11:08 +00:00
|
|
|
fi
|
|
|
|
fi
|
2020-09-02 13:08:38 +00:00
|
|
|
|
|
|
|
if [[ -e /proc/$sync_pid/status ]]; then
|
|
|
|
wait "$sync_pid"
|
|
|
|
fi
|