2016-02-19 21:11:08 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-01-15 18:49:30 +00:00
|
|
|
function usage()
|
|
|
|
{
|
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
options="[config|reset|status|help]"
|
|
|
|
else
|
|
|
|
options="[config|reset|help]"
|
|
|
|
fi
|
|
|
|
|
|
|
|
[[ ! -z $2 ]] && ( echo "$2"; echo ""; )
|
|
|
|
echo "Helper script for allocating hugepages and binding NVMe, I/OAT and Virtio devices to"
|
|
|
|
echo "a generic VFIO kernel driver. If VFIO is not available on the system, this script will"
|
|
|
|
echo "fall back to UIO. NVMe and Virtio devices with active mountpoints will be ignored."
|
|
|
|
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."
|
|
|
|
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."
|
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
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."
|
|
|
|
echo "NVME_WHITELIST Whitespace separated list of NVMe devices to bind."
|
|
|
|
echo " Each device must be specified as a full PCI address."
|
|
|
|
echo " E.g. NVME_WHITELIST=\"0000:01:00.0 0000:02:00.0\""
|
|
|
|
echo " To blacklist all NVMe devices use a non-valid PCI address."
|
|
|
|
echo " E.g. NVME_WHITELIST=\"none\""
|
|
|
|
echo " If empty or unset, all PCI devices will be bound."
|
|
|
|
echo "SKIP_PCI Setting this variable to non-zero value will skip all PCI operations."
|
|
|
|
echo "TARGET_USER User that will own hugepage mountpoint directory and vfio groups."
|
|
|
|
echo " By default the current user will be used."
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2018-01-10 23:14:39 +00:00
|
|
|
function nvme_whitelist_contains() {
|
|
|
|
for i in ${NVME_WHITELIST[@]}
|
|
|
|
do
|
|
|
|
if [ "$i" == "$1" ] ; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-04-14 19:21:32 +00:00
|
|
|
function linux_bind_driver() {
|
|
|
|
bdf="$1"
|
|
|
|
driver_name="$2"
|
|
|
|
old_driver_name="no driver"
|
|
|
|
ven_dev_id=$(lspci -n -s $bdf | cut -d' ' -f3 | sed 's/:/ /')
|
|
|
|
|
|
|
|
if [ -e "/sys/bus/pci/devices/$bdf/driver" ]; then
|
|
|
|
old_driver_name=$(basename $(readlink /sys/bus/pci/devices/$bdf/driver))
|
|
|
|
|
|
|
|
if [ "$driver_name" = "$old_driver_name" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
echo "$bdf ($ven_dev_id): $old_driver_name -> $driver_name"
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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() {
|
|
|
|
bdf="$1"
|
|
|
|
ven_dev_id=$(lspci -n -s $bdf | cut -d' ' -f3 | sed 's/:/ /')
|
|
|
|
|
|
|
|
if ! [ -e "/sys/bus/pci/devices/$bdf/driver" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
old_driver_name=$(basename $(readlink /sys/bus/pci/devices/$bdf/driver))
|
|
|
|
|
|
|
|
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"
|
|
|
|
echo "$bdf ($ven_dev_id): $old_driver_name -> no driver"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-10-13 17:19:43 +00:00
|
|
|
function get_nvme_name_from_bdf {
|
|
|
|
set +e
|
|
|
|
nvme_devs=`lsblk -d --output NAME | grep "^nvme"`
|
|
|
|
set -e
|
|
|
|
for dev in $nvme_devs; do
|
2017-12-08 19:24:46 +00:00
|
|
|
link_name=$(readlink /sys/block/$dev/device/device) || true
|
|
|
|
if [ -z "$link_name" ]; then
|
|
|
|
link_name=$(readlink /sys/block/$dev/device)
|
|
|
|
fi
|
|
|
|
bdf=$(basename "$link_name")
|
2017-10-13 17:19:43 +00:00
|
|
|
if [ "$bdf" = "$1" ]; then
|
|
|
|
eval "$2=$dev"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-01-05 08:54:39 +00:00
|
|
|
function get_virtio_names_from_bdf {
|
2018-01-04 21:16:30 +00:00
|
|
|
set +e
|
|
|
|
virtio_ctrlrs=`lsblk --nodeps --output "NAME,SUBSYSTEMS" | grep virtio | awk '{print $1}'`
|
|
|
|
set -e
|
2018-01-05 08:54:39 +00:00
|
|
|
virtio_names=''
|
|
|
|
|
2018-01-04 21:16:30 +00:00
|
|
|
for ctrlr in $virtio_ctrlrs; do
|
|
|
|
if readlink "/sys/block/$ctrlr" | grep -q "$1"; then
|
2018-01-05 08:54:39 +00:00
|
|
|
virtio_names="$virtio_names $ctrlr"
|
2018-01-04 21:16:30 +00:00
|
|
|
fi
|
|
|
|
done
|
2018-01-05 08:54:39 +00:00
|
|
|
|
|
|
|
eval "$2='$virtio_names'"
|
2018-01-04 21:16:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 20:05:47 +00:00
|
|
|
function configure_linux_pci {
|
2016-02-19 21:11:08 +00:00
|
|
|
driver_name=vfio-pci
|
|
|
|
if [ -z "$(ls /sys/kernel/iommu_groups)" ]; then
|
|
|
|
# No IOMMU. Use uio.
|
|
|
|
driver_name=uio_pci_generic
|
|
|
|
fi
|
|
|
|
|
|
|
|
# NVMe
|
|
|
|
modprobe $driver_name || true
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2017-10-13 17:19:43 +00:00
|
|
|
blkname=''
|
|
|
|
get_nvme_name_from_bdf "$bdf" blkname
|
2018-01-10 23:14:39 +00:00
|
|
|
if [[ ${#NVME_WHITELIST[@]} != 0 ]] && nvme_whitelist_contains $bdf == "0" ; then
|
|
|
|
echo "Skipping un-whitelisted NVMe controller $blkname ($bdf)"
|
|
|
|
continue
|
|
|
|
fi
|
2017-10-13 17:19:43 +00:00
|
|
|
if [ "$blkname" != "" ]; then
|
|
|
|
mountpoints=$(lsblk /dev/$blkname --output MOUNTPOINT -n | wc -w)
|
|
|
|
else
|
|
|
|
mountpoints="0"
|
|
|
|
fi
|
|
|
|
if [ "$mountpoints" = "0" ]; then
|
|
|
|
linux_bind_driver "$bdf" "$driver_name"
|
|
|
|
else
|
|
|
|
echo Active mountpoints on /dev/$blkname, so not binding PCI dev $bdf
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# IOAT
|
|
|
|
TMP=`mktemp`
|
|
|
|
#collect all the device_id info of ioat devices.
|
2016-08-08 22:57:49 +00:00
|
|
|
grep "PCI_DEVICE_ID_INTEL_IOAT" $rootdir/include/spdk/pci_ids.h \
|
2016-02-19 21:11:08 +00:00
|
|
|
| awk -F"x" '{print $2}' > $TMP
|
|
|
|
|
|
|
|
for dev_id in `cat $TMP`; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 8086 $dev_id); do
|
2016-04-14 19:21:32 +00:00
|
|
|
linux_bind_driver "$bdf" "$driver_name"
|
2016-02-19 21:11:08 +00:00
|
|
|
done
|
|
|
|
done
|
|
|
|
rm $TMP
|
|
|
|
|
2017-05-30 21:13:50 +00:00
|
|
|
# virtio-scsi
|
|
|
|
TMP=`mktemp`
|
|
|
|
#collect all the device_id info of virtio-scsi devices.
|
2017-10-18 09:51:07 +00:00
|
|
|
grep "PCI_DEVICE_ID_VIRTIO_SCSI" $rootdir/include/spdk/pci_ids.h \
|
2017-05-30 21:13:50 +00:00
|
|
|
| awk -F"x" '{print $2}' > $TMP
|
|
|
|
|
|
|
|
for dev_id in `cat $TMP`; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 1af4 $dev_id); do
|
2018-01-05 08:54:39 +00:00
|
|
|
blknames=''
|
|
|
|
get_virtio_names_from_bdf "$bdf" blknames
|
|
|
|
for blkname in $blknames; do
|
|
|
|
if mount | grep -q "/dev/$blkname"; then
|
|
|
|
echo Active mountpoints on /dev/$blkname, so not binding PCI dev $bdf
|
|
|
|
continue 2
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
linux_bind_driver "$bdf" "$driver_name"
|
2017-05-30 21:13:50 +00:00
|
|
|
done
|
|
|
|
done
|
|
|
|
rm $TMP
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
echo "1" > "/sys/bus/pci/rescan"
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function configure_linux {
|
2017-11-29 00:09:57 +00:00
|
|
|
if [ "$SKIP_PCI" == 0 ]; then
|
|
|
|
configure_linux_pci
|
|
|
|
fi
|
2016-04-14 20:22:11 +00:00
|
|
|
|
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"
|
2017-10-27 17:56:36 +00:00
|
|
|
allocated_hugepages=`cat $hugepages_target`
|
|
|
|
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-11-29 21:26:42 +00:00
|
|
|
fi
|
2016-04-06 03:03:28 +00:00
|
|
|
|
|
|
|
MEMLOCK_AMNT=`ulimit -l`
|
|
|
|
if [ "$MEMLOCK_AMNT" != "unlimited" ] ; then
|
2016-11-08 14:21:15 +00:00
|
|
|
MEMLOCK_MB=$(( $MEMLOCK_AMNT / 1024 ))
|
2016-04-06 03:03:28 +00:00
|
|
|
echo ""
|
|
|
|
echo "Current user memlock limit: ${MEMLOCK_MB} MB"
|
|
|
|
echo ""
|
|
|
|
echo "This is the maximum amount of memory you will be"
|
|
|
|
echo "able to use with DPDK and VFIO if run as current user."
|
|
|
|
echo -n "To change this, please adjust limits.conf memlock "
|
|
|
|
echo "limit for current user."
|
|
|
|
|
|
|
|
if [ $MEMLOCK_AMNT -lt 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 current user."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 20:05:47 +00:00
|
|
|
function reset_linux_pci {
|
2016-02-19 21:11:08 +00:00
|
|
|
# NVMe
|
2017-10-13 15:32:39 +00:00
|
|
|
set +e
|
|
|
|
lsmod | grep nvme > /dev/null
|
|
|
|
driver_loaded=$?
|
|
|
|
set -e
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2017-10-13 15:32:39 +00:00
|
|
|
if [ $driver_loaded -eq 0 ]; then
|
|
|
|
linux_bind_driver "$bdf" nvme
|
|
|
|
else
|
|
|
|
linux_unbind_driver "$bdf"
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# IOAT
|
|
|
|
TMP=`mktemp`
|
|
|
|
#collect all the device_id info of ioat devices.
|
2016-08-08 22:57:49 +00:00
|
|
|
grep "PCI_DEVICE_ID_INTEL_IOAT" $rootdir/include/spdk/pci_ids.h \
|
2016-02-19 21:11:08 +00:00
|
|
|
| awk -F"x" '{print $2}' > $TMP
|
|
|
|
|
2017-10-13 15:32:39 +00:00
|
|
|
set +e
|
|
|
|
lsmod | grep ioatdma > /dev/null
|
|
|
|
driver_loaded=$?
|
|
|
|
set -e
|
2016-02-19 21:11:08 +00:00
|
|
|
for dev_id in `cat $TMP`; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 8086 $dev_id); do
|
2017-10-13 15:32:39 +00:00
|
|
|
if [ $driver_loaded -eq 0 ]; then
|
|
|
|
linux_bind_driver "$bdf" ioatdma
|
|
|
|
else
|
|
|
|
linux_unbind_driver "$bdf"
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
done
|
|
|
|
done
|
|
|
|
rm $TMP
|
|
|
|
|
2017-05-30 21:13:50 +00:00
|
|
|
# virtio-scsi
|
|
|
|
TMP=`mktemp`
|
|
|
|
#collect all the device_id info of virtio-scsi devices.
|
2017-10-18 09:51:07 +00:00
|
|
|
grep "PCI_DEVICE_ID_VIRTIO_SCSI" $rootdir/include/spdk/pci_ids.h \
|
2017-05-30 21:13:50 +00:00
|
|
|
| awk -F"x" '{print $2}' > $TMP
|
|
|
|
|
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
|
|
|
|
for dev_id in `cat $TMP`; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 1af4 $dev_id); do
|
2017-05-30 21:13:50 +00:00
|
|
|
linux_bind_driver "$bdf" virtio-pci
|
|
|
|
done
|
|
|
|
done
|
|
|
|
rm $TMP
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
echo "1" > "/sys/bus/pci/rescan"
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset_linux {
|
2017-11-29 00:09:57 +00:00
|
|
|
if [ "$SKIP_PCI" == 0 ]; then
|
|
|
|
reset_linux_pci
|
|
|
|
fi
|
2017-03-28 17:11:35 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-01-30 13:38:44 +00:00
|
|
|
function status_linux {
|
|
|
|
echo "NVMe devices"
|
|
|
|
|
|
|
|
echo -e "BDF\t\tNuma Node\tDriver name\t\tDevice name"
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2017-01-30 13:38:44 +00:00
|
|
|
driver=`grep DRIVER /sys/bus/pci/devices/$bdf/uevent |awk -F"=" '{print $2}'`
|
|
|
|
node=`cat /sys/bus/pci/devices/$bdf/numa_node`;
|
2018-01-05 04:20:09 +00:00
|
|
|
if [ "$driver" = "nvme" -a -d /sys/bus/pci/devices/$bdf/nvme ]; then
|
2017-01-30 13:38:44 +00:00
|
|
|
name="\t"`ls /sys/bus/pci/devices/$bdf/nvme`;
|
|
|
|
else
|
|
|
|
name="-";
|
|
|
|
fi
|
|
|
|
echo -e "$bdf\t$node\t\t$driver\t\t$name";
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "I/OAT DMA"
|
|
|
|
|
|
|
|
#collect all the device_id info of ioat devices.
|
|
|
|
TMP=`grep "PCI_DEVICE_ID_INTEL_IOAT" $rootdir/include/spdk/pci_ids.h \
|
|
|
|
| awk -F"x" '{print $2}'`
|
|
|
|
echo -e "BDF\t\tNuma Node\tDriver Name"
|
|
|
|
for dev_id in $TMP; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 8086 $dev_id); do
|
2017-01-30 13:38:44 +00:00
|
|
|
driver=`grep DRIVER /sys/bus/pci/devices/$bdf/uevent |awk -F"=" '{print $2}'`
|
|
|
|
node=`cat /sys/bus/pci/devices/$bdf/numa_node`;
|
|
|
|
echo -e "$bdf\t$node\t\t$driver"
|
|
|
|
done
|
|
|
|
done
|
2017-05-30 21:13:50 +00:00
|
|
|
|
|
|
|
echo "virtio"
|
|
|
|
|
|
|
|
#collect all the device_id info of virtio-scsi devices.
|
2017-10-18 09:51:07 +00:00
|
|
|
TMP=`grep "PCI_DEVICE_ID_VIRTIO_SCSI" $rootdir/include/spdk/pci_ids.h \
|
2017-05-30 21:13:50 +00:00
|
|
|
| awk -F"x" '{print $2}'`
|
|
|
|
echo -e "BDF\t\tNuma Node\tDriver Name"
|
|
|
|
for dev_id in $TMP; do
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_dev_id 1af4 $dev_id); do
|
2017-05-30 21:13:50 +00:00
|
|
|
driver=`grep DRIVER /sys/bus/pci/devices/$bdf/uevent |awk -F"=" '{print $2}'`
|
|
|
|
node=`cat /sys/bus/pci/devices/$bdf/numa_node`;
|
|
|
|
echo -e "$bdf\t$node\t\t$driver"
|
|
|
|
done
|
|
|
|
done
|
2017-01-30 13:38:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 20:05:47 +00:00
|
|
|
function configure_freebsd_pci {
|
2016-02-19 21:11:08 +00:00
|
|
|
TMP=`mktemp`
|
2016-08-08 22:57:49 +00:00
|
|
|
|
|
|
|
# NVMe
|
|
|
|
GREP_STR="class=0x010802"
|
|
|
|
|
|
|
|
# IOAT
|
|
|
|
grep "PCI_DEVICE_ID_INTEL_IOAT" $rootdir/include/spdk/pci_ids.h \
|
|
|
|
| awk -F"x" '{print $2}' > $TMP
|
|
|
|
for dev_id in `cat $TMP`; do
|
|
|
|
GREP_STR="${GREP_STR}\|chip=0x${dev_id}8086"
|
|
|
|
done
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
AWK_PROG="{if (count > 0) printf \",\"; printf \"%s:%s:%s\",\$2,\$3,\$4; count++}"
|
|
|
|
echo $AWK_PROG > $TMP
|
2016-08-08 22:57:49 +00:00
|
|
|
|
|
|
|
BDFS=`pciconf -l | grep "${GREP_STR}" | awk -F: -f $TMP`
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
kldunload nic_uio.ko || true
|
|
|
|
kenv hw.nic_uio.bdfs=$BDFS
|
|
|
|
kldload nic_uio.ko
|
|
|
|
rm $TMP
|
2017-11-14 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function configure_freebsd {
|
2017-11-29 00:09:57 +00:00
|
|
|
if [ "$SKIP_PCI" == 0 ]; then
|
|
|
|
configure_freebsd_pci
|
|
|
|
fi
|
2016-04-14 20:22:11 +00:00
|
|
|
|
|
|
|
kldunload contigmem.ko || true
|
2017-08-30 18:20:22 +00:00
|
|
|
kenv hw.contigmem.num_buffers=$((HUGEMEM / 256))
|
2016-07-21 16:55:32 +00:00
|
|
|
kenv hw.contigmem.buffer_size=$((256 * 1024 * 1024))
|
2016-04-14 20:22:11 +00:00
|
|
|
kldload contigmem.ko
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset_freebsd {
|
|
|
|
kldunload contigmem.ko || true
|
2017-11-29 00:09:57 +00:00
|
|
|
|
|
|
|
if [ "$SKIP_PCI" == 0 ]; then
|
|
|
|
kldunload nic_uio.ko || true
|
|
|
|
fi
|
2016-02-19 21:11:08 +00:00
|
|
|
}
|
|
|
|
|
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}
|
2017-11-29 00:09:57 +00:00
|
|
|
: ${SKIP_PCI:=0}
|
2018-01-10 23:14:39 +00:00
|
|
|
: ${NVME_WHITELIST:=""}
|
|
|
|
declare -a NVME_WHITELIST=(${NVME_WHITELIST})
|
2017-08-30 18:20:22 +00:00
|
|
|
|
2018-01-15 19:08:37 +00:00
|
|
|
if [ -z "$TARGET_USER" ]; then
|
|
|
|
TARGET_USER="$SUDO_USER"
|
|
|
|
if [ -z "$TARGET_USER" ]; then
|
|
|
|
TARGET_USER=`logname 2>/dev/null` || true
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-02-19 21:11:08 +00:00
|
|
|
if [ `uname` = Linux ]; then
|
2017-10-27 17:26:58 +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
|
|
|
|
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-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
|