test cifs/102 (a test for handle leaks) does appear to pass with current mainline (it should return "no locked files" in the output) but here is the test: # Test for Open leaks # seq=`basename $0` seqres=$RESULT_DIR/$seq echo "QA output created by $seq" here=`pwd` tmp=/tmp/$$ status=1 # failure is the default! _cleanup() { rm -f $tmp.* } trap "_cleanup ; exit \$status" 0 1 2 3 15 # get standard environment, filters and checks . ./common/rc . ./common/filter # real QA test starts here _supported_fs cifs _require_test mkdir -p $TEST_DIR/$$ || _fail "failed to create test dir" # Create a file to test with echo "hello world" > $TEST_DIR/leak # Try to kill a 'cat' when it is opening/closing a file (for i in {1..5000} ; do cat $TEST_DIR/leak & sleep 0.0001 ; kill -9 $! ; done) >/dev/null 2>&1 sleep 3 # and verify if we have any leaked filehandles smbstatus | grep -i Locked -A1000 status=0 exit On Wed, Feb 19, 2025 at 10:26 AM David Howells <dhowells@xxxxxxxxxx> wrote: > > Steve French <smfrench@xxxxxxxxx> wrote: > > > cifs/102 > > What's cifs/102? > > David > -- Thanks, Steve