Hi,

I'ven't had a lot of time. Main problem is currently:
How can I get an "old" file system on my test machine ?

I'll tried to simply copy a whole structure with system tools
(scp and so on) an I get

ls -lR  => ~10sek on the old system, then less 1 sek (cache data)

time find . -type f -print0 | xargs -0 cat > /dev/null

real    2m1.606s
user    0m0.050s
sys     0m0.480s

--------
So on the new sytem

ls -lR  =>  <1sek

(umount before)
time find . -type f -print0 | xargs -0 cat > /dev/null
real    0m8.764s
user    0m0.030s
sys     0m0.560s

from cache: time find . -type f -print0 | xargs -0 cat > /dev/null

real    0m0.194s
user    0m0.010s
sys     0m0.230s


-----------------------
How should I test a way to optimize it, when I can not get the "dirty" state ?

Bye, Peer



--
Mit freundlichem Gruss
    Peer-Joachim Koch
_________________________________________________________
Max-Planck-Institut fuer Biogeochemie
Dr. Peer-Joachim Koch
Hans-Knöll Str.10            Telefon: ++49 3641 57-6705
D-07745 Jena                 Telefax: ++49 3641 57-7705

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Jfs-discussion mailing list
Jfs-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jfs-discussion

Reply via email to