Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
LU-7323 test: Unknown symbol mb_cache_create (err 0)" on RHEL7
[fs/lustre-release.git]
/
lustre
/
tests
/
racer
/
file_swap.sh
1
#!/bin/bash
2
trap 'kill $(jobs -p)' EXIT
3
4
DIR=$1
5
MAX=$2
6
7
while : ; do
8
file=$((RANDOM % $MAX))
9
new_file=$((RANDOM % MAX))
10
$LFS swap_layouts $DIR/$file $DIR/$new_file 2>/dev/null
11
done