#!/bin/sh

[ "${fs#*nfs}" != "$fs" ] || exit 0

. $LKP_SRC/lib/wait.sh
setup_wait

while :
do
	echo time: $(date +%s.%N)
	cat /proc/self/mountstats
	wait_timeout $interval
done
