Comment 9 for bug 1753662

Revision history for this message
Nobuto Murata (nobuto) wrote :

The kernel with c15e07b02bf0 didn't make a difference on the race condition. The issue is still reproducible. Let me know when you need my testing again with different kernels.

So far, I'm using rc.local below to reboot the same node multiple times.

====
#!/bin/sh

exec >> /root/bond_check.log 2>&1

echo
echo '############################################################'
echo

date -R
uname -a
ethtool -i eno1
modinfo i40e
path=$(modinfo i40e | grep filename: | awk '{print $2}')
sha256sum "$path"
package=$(dpkg -S "$path" | cut -d: -f1)
apt-cache policy "$package"

if [ "$(grep state /proc/net/bonding/bond* | grep -c -v -w 61)" != 0 ]; then
    echo
    echo '*** Unexpected LACP status ***'
    grep -r '.*' /proc/net/bonding/bond*
fi

sleep 300
reboot

exit 0
====