fedora rawhide install onto an msi wind u100, encrypted filesystem. During a write to disk of an iso from a network drive using rsync I obtain a terrible transfer speed. Rsync says 2.5 megs a second. top shows a kcrypto eating cpu (>30%), i/o wait is low (<5%).
Sure - processor must encrypt all io. What's wrong with that? Try some local big file copy - do you see better speed? And rsync to unencrypted filesystem - what part os system causes this slowdown - network, encrypted fs, rsync, some combination?
> What's wrong with that? The overhead of the encryption is so high that it is substantially limiting the speed of a copy from a network drive. rsync was used only to determine the speed, i.e. this was not a checksum heavy operation.
Try another cipher. If it is AES, be sure you use optimized kernel module. I cannot help here... the problem is then in speed of encryption process in kerenl crypto lib, maybe the processor need specific optimization (that's Atom right?)
Yep an Atom. MSI Wind U100. What's the default cipher? I used that. Can I switch it live (i.e. is the cipher per block or file, or is it per partition?)
Could you please try to boot with nosmp kernel boot parameter - to avoid usage of the second CPU - do you see any improvent in the transfer speed?
$ dd if=/dev/zero of=TEST bs=1k count=500k # 524 megs With smp: 60s, 8.6 MB/s Without smp: 74s, 7.0 MB/s Which is odd, because these are both significantly above the slow transfer speed I reported. Before, I got the feeling that the ondemand governor wasn't allowing full use of the cpu. This time /proc/cpuinfo shows 1600 mhz (is this how to check?) so I guess the cpu isn't being kept scaled down any more.
I think that run full encrypted systems on such configuration together with using network transfer must have high performance penalty. Also Atom CPU probably need some special optimizations in kernel. Anyway it is not lvm2 nor cryptsetup bug.