Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / lustre / tests / racer / file_getxattr.sh
1 #!/bin/bash
2 trap 'kill $(jobs -p)' EXIT
3
4 DIR=$1
5 MAX=$2
6
7 while true; do
8         file=$DIR/$((RANDOM % MAX))
9         getfattr -d -m- $file &> /dev/null
10 done