Hi. In the wiki here
https://pve.proxmox.com/wiki/Pci_passthrough
there is a script that seems contradictory. It is supposed to tell you whether your system has Interrupt remapping support but in this script there are 2 answer options which are really the same:
#!/bin/sh
if [ $(dmesg | grep ecap | wc -l) -eq 0 ]; then
echo "No interrupt remapping support found"
exit 1
fi
for i in $(dmesg | grep ecap | awk '{print $NF}'); do
if [ $(( (0x$i & 0xf) >> 3 )) -ne 1 ]; then
echo "Interrupt remapping not supported"
exit 1
fi
done
Which is the answer for yes and which one is for no ??
Thanks for your help in advance....
https://pve.proxmox.com/wiki/Pci_passthrough
there is a script that seems contradictory. It is supposed to tell you whether your system has Interrupt remapping support but in this script there are 2 answer options which are really the same:
#!/bin/sh
if [ $(dmesg | grep ecap | wc -l) -eq 0 ]; then
echo "No interrupt remapping support found"
exit 1
fi
for i in $(dmesg | grep ecap | awk '{print $NF}'); do
if [ $(( (0x$i & 0xf) >> 3 )) -ne 1 ]; then
echo "Interrupt remapping not supported"
exit 1
fi
done
Which is the answer for yes and which one is for no ??
Thanks for your help in advance....