dmsetup remove_all wipefs -a --force /dev/sdb1 mkfs -t ext4 -q -E lazy_itable_init=0,lazy_journal_init=0 -F /dev/sdb1 mkdir -p /fs/sdb1 mount -t ext4 /dev/sdb1 /fs/sdb1 mkdir -p /cifs/sdb1 timeout 5m mount -t cifs -o user=root,password=pass //localhost/fs/sdb1 /cifs/sdb1 sync echo 3 > /proc/sys/vm/drop_caches for cpu_dir in /sys/devices/system/cpu/cpu[0-9]* do online_file="$cpu_dir"/online [ -f "$online_file" ] && [ "$(cat "$online_file")" -eq 0 ] && continue file="$cpu_dir"/cpufreq/scaling_governor [ -f "$file" ] && echo "performance" > "$file" done filebench -f /lkp/benchmarks/filebench/share/filebench/workloads/fivestreamread.f sleep 100 rm -rf /cifs/sdb1/largefile1 /cifs/sdb1/largefile2 /cifs/sdb1/largefile3 /cifs/sdb1/largefile4 /cifs/sdb1/largefile5 /cifs/sdb1/lost+found