vpp/extras/scripts/pci-nic-bind-to-kernel
Damjan Marion 5ef1fef692 Move scripts to extras/
Change-Id: I2abd6367915d4652fcf45025bd251046f3f206ab
Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-04-26 15:39:18 +00:00

20 lines
417 B
Bash
Executable File

#!/bin/bash
# Bind all unused PCI devices bound to uio drivers
# back to default kernel driver
if [ $USER != "root" ] ; then
echo "Restarting script with sudo..."
sudo $0 ${*}
exit
fi
for f in /sys/bus/pci/drivers/{igb_uio,uio_pci_generic,vfio-pci}/*; do
[ -e ${f}/config ] || continue
fuser -s ${f}/config && continue
echo 1 > ${f}/remove
removed=y
done
[ -n ${removed} ] && echo 1 > /sys/bus/pci/rescan