On 2016-03-17 23:44, Chris Murphy wrote:
On Thu, Mar 17, 2016 at 7:47 AM, Carlos E. R.
(there is an unsolved bugzilla, IIRC).
# printf '%s ' {1..1000000} | xargs touch
Those are empty files. Have a look here: https://bugzilla.novell.com/show_bug.cgi?id=846807 What I did was: WHERE=/data/btrfs/test SAMPLE=$WHERE/sample ERROR=0 time for i in `seq -w 1 100`; do if [ $ERROR -ne 0 ]; then break fi echo $i for j in `seq -w 1 100`; do if [ $ERROR -ne 0 ]; then break fi for k in `seq -w 1 100`; do cp $SAMPLE $WHERE/TT-$i-$j-$k if [ $? -gt 0 ]; then echo "Copy error on TT-$i-$j-$k, abort" ERROR=1 break fi done done done -- Cheers / Saludos, Carlos E. R. (from 13.1 x86_64 "Bottle" at Telcontar)