On Tue, Nov 02, 2021 at 09:07:53PM +0100, Phil Sutter wrote: > Previous fix for HZ=100 was not sufficient, a kernel with HZ=250 rounds > the 10ms to 8ms it seems. Do as Lukas suggests and accept the occasional > input/output asymmetry instead of continuing the hide'n'seek game. [...] > --- a/tests/shell/testcases/sets/0031set_timeout_size_0 > +++ b/tests/shell/testcases/sets/0031set_timeout_size_0 > @@ -8,5 +8,5 @@ add rule x test set update ip daddr timeout 100ms @y" > > set -e > $NFT -f - <<< "$RULESET" > -$NFT list chain x test | grep -q 'update @y { ip saddr timeout 1d2h3m4s10ms }' > +$NFT list chain x test | grep -q 'update @y { ip saddr timeout 1d2h3m4s\(10\|8\)ms }' > $NFT list chain x test | grep -q 'update @y { ip daddr timeout 100ms }' Thanks, LGTM. (The backslashes preceding the ( | ) characters could be avoided with grep -E, but that's just a matter of personal preference.)