From: "Minh Tuan Duong" <minhtuanmt1@gmail.com>
To: "Dominik Bozek" <domino@mikroswiat.pl>
Cc: linuxppc-embedded@ozlabs.org
Subject: Re: performance: memcpy vs. __copy_tofrom_user
Date: Wed, 8 Oct 2008 22:31:54 +0700 [thread overview]
Message-ID: <9a53cf970810080831t3e79bef7i1ad05deb993494b7@mail.gmail.com> (raw)
In-Reply-To: <48ECC611.3030309@mikroswiat.pl>
[-- Attachment #1: Type: text/plain, Size: 5935 bytes --]
http://www.xml.com/ldd/chapter/book/ch03.html
Hope this help.
On Wed, Oct 8, 2008 at 9:39 PM, Dominik Bozek <domino@mikroswiat.pl> wrote:
> Hi all,
>
> I have done a test of memcpy() and __copy_tofrom_user() on the mpc8313.
> And the major conclusion is that __copy_tofrom_user is more efficient
> than memcpy. Sometimes about 40%.
>
> If I good understand, the memcpy() just copy the data, while
> __copy_tofrom_user() take care if the memory wasn't swapped out. So then
> memcpy() shall be faster than __copy_tofrom_user(). Am I right?
> Is here anybody, who can confirm such results and maybe is able to
> improve the memcpy()?
>
>
> Let talk about the test.
> I have prepared two pieces of memory of size 64KB and I make sure that
> this memory is not swapped out (necessary for memcpy() later). Then I
> run one of the memory copy function to transfer 32MB and I measure the
> time. The memory is copied in chunks from 64KB to 8B. I take care about
> the cache calling flush_dcache_range() whenever whole 64KB was used.
> I know, that memcpy on the kernel level is not intended to copy memory
> blocks in userspace and __copy_tofrom_user is not intended to copy data
> only between two user blocks, but for the performance test it doesn't
> matter.
> Bellow you may see the short piece of code in the kernel module.
>
> #define TEST_BUF_SIZE (64*1024)
> int function;
> char *buf1, *buf2, *buf1_bis, *buf2_bis;
> unsigned int size, cnt;
>
> get_user(function, &((TEST_ARG*)(arg))->function);
> get_user(buf1, &((TEST_ARG*)(arg))->buf1);
> get_user(buf2, &((TEST_ARG*)(arg))->buf2);
> get_user(size, &((TEST_ARG*)(arg))->size);
>
> cnt = (32*1024*1024)/size; /* how many repeats of memory copy is needed
> to transfer 32MB ? */
> buf1_bis = buf1;
> buf2_bis = buf2;
>
> switch (function)
> {
> case MEMCPY_TEST:
> while (cnt-->0)
> {
> if (buf1_bis >= buf1+TEST_BUF_SIZE)
> {
> /* need for flusch data cache as seldom as possible */
> buf1_bis = buf1;
> buf2_bis = buf2;
> flush_dcache_range((int)buf1, (int)(buf2+TEST_BUF_SIZE));
> }
> if (buf1_bis != memcpy(buf1_bis, buf2_bis, size))
> break;
> buf1_bis += size;
> buf2_bis += size;
> }
> break;
>
> case COPY_TOFROM_USER_TEST:
> while (cnt-->0)
> {
> if (buf1_bis >= buf1+TEST_BUF_SIZE)
> {
> /* need for flusch data cache as seldom as possible */
> buf1_bis = buf1;
> buf2_bis = buf2;
> flush_dcache_range((int)buf1, (int)(buf2+TEST_BUF_SIZE));
> }
> ret = __copy_tofrom_user(buf1_bis, buf2_bis, size);
> if (ret != 0)
> break;
> buf1_bis += size;
> buf2_bis += size;
> }
> break;
> }
>
>
> Bellow are the results:
>
> memcpy()
> chunk: 65536 [B] | transfer: 69.2 [MB/s] | time: 1.849727 [s] |
> size: 128.000 [MB]
> chunk: 32768 [B] | transfer: 69.2 [MB/s] | time: 1.849700 [s] |
> size: 128.000 [MB]
> chunk: 16384 [B] | transfer: 69.2 [MB/s] | time: 1.849845 [s] |
> size: 128.000 [MB]
> chunk: 8192 [B] | transfer: 69.2 [MB/s] | time: 1.850535 [s] |
> size: 128.000 [MB]
> chunk: 4096 [B] | transfer: 69.1 [MB/s] | time: 1.853405 [s] |
> size: 128.000 [MB]
> chunk: 2048 [B] | transfer: 69.1 [MB/s] | time: 1.852877 [s] |
> size: 128.000 [MB]
> chunk: 1024 [B] | transfer: 69.2 [MB/s] | time: 1.849963 [s] |
> size: 128.000 [MB]
> chunk: 512 [B] | transfer: 69.0 [MB/s] | time: 1.853793 [s] |
> size: 128.000 [MB]
> chunk: 256 [B] | transfer: 68.6 [MB/s] | time: 1.866222 [s] |
> size: 128.000 [MB]
> chunk: 128 [B] | transfer: 68.0 [MB/s] | time: 1.883002 [s] |
> size: 128.000 [MB]
> chunk: 64 [B] | transfer: 67.2 [MB/s] | time: 1.904073 [s] |
> size: 128.000 [MB]
> chunk: 32 [B] | transfer: 64.7 [MB/s] | time: 1.978109 [s] |
> size: 128.000 [MB]
> chunk: 16 [B] | transfer: 54.5 [MB/s] | time: 2.348682 [s] |
> size: 128.000 [MB]
> chunk: 8 [B] | transfer: 47.4 [MB/s] | time: 2.698635 [s] |
> size: 128.000 [MB]
>
>
> __copy_tofrom_user()
> chunk: 65536 [B] | transfer: 97.3 [MB/s] | time: 1.315155 [s] |
> size: 128.000 [MB]
> chunk: 32768 [B] | transfer: 97.3 [MB/s] | time: 1.315762 [s] |
> size: 128.000 [MB]
> chunk: 16384 [B] | transfer: 97.2 [MB/s] | time: 1.316946 [s] |
> size: 128.000 [MB]
> chunk: 8192 [B] | transfer: 96.8 [MB/s] | time: 1.321705 [s] |
> size: 128.000 [MB]
> chunk: 4096 [B] | transfer: 96.6 [MB/s] | time: 1.325516 [s] |
> size: 128.000 [MB]
> chunk: 2048 [B] | transfer: 96.6 [MB/s] | time: 1.325570 [s] |
> size: 128.000 [MB]
> chunk: 1024 [B] | transfer: 96.8 [MB/s] | time: 1.322599 [s] |
> size: 128.000 [MB]
> chunk: 512 [B] | transfer: 97.8 [MB/s] | time: 1.308186 [s] |
> size: 128.000 [MB]
> chunk: 256 [B] | transfer: 100.2 [MB/s] | time: 1.277788 [s] |
> size: 128.000 [MB]
> chunk: 128 [B] | transfer: 91.5 [MB/s] | time: 1.398216 [s] |
> size: 128.000 [MB]
> chunk: 64 [B] | transfer: 87.0 [MB/s] | time: 1.471784 [s] |
> size: 128.000 [MB]
> chunk: 32 [B] | transfer: 75.0 [MB/s] | time: 1.706426 [s] |
> size: 128.000 [MB]
> chunk: 16 [B] | transfer: 47.8 [MB/s] | time: 2.678039 [s] |
> size: 128.000 [MB]
> chunk: 8 [B] | transfer: 41.5 [MB/s] | time: 3.084689 [s] |
> size: 128.000 [MB]
>
> Regards
> Dominik Bozek
>
>
> BTW. The memcpy() maybe optimized as it is on i32 when the size of block
> is known at compile time.
>
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
--
Best regards,
Tuan Duong
Mobile: 0983349121
[-- Attachment #2: Type: text/html, Size: 8412 bytes --]
next prev parent reply other threads:[~2008-10-08 15:31 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-08 14:39 performance: memcpy vs. __copy_tofrom_user Dominik Bozek
2008-10-08 15:31 ` Minh Tuan Duong [this message]
2008-10-08 15:39 ` Bill Gatliff
2008-10-08 15:42 ` Grant Likely
2008-10-09 2:34 ` Paul Mackerras
2008-10-09 10:12 ` Dominik Bozek
2008-10-09 11:06 ` Paul Mackerras
2008-10-09 11:41 ` Dominik Bozek
2008-10-09 12:04 ` Leon Woestenberg
2008-10-09 15:37 ` Matt Sealey
2008-10-11 22:30 ` Benjamin Herrenschmidt
2008-10-12 2:05 ` Matt Sealey
2008-10-12 4:05 ` Benjamin Herrenschmidt
2008-10-13 15:20 ` Scott Wood
2008-10-13 20:50 ` Benjamin Herrenschmidt
2008-10-13 21:03 ` Scott Wood
2008-10-14 2:14 ` Matt Sealey
2008-10-14 2:39 ` Benjamin Herrenschmidt
2008-10-14 15:10 ` Scott Wood
2008-10-15 1:37 ` Matt Sealey
2008-10-10 17:17 ` Dominik Bozek
2008-10-08 17:40 ` Scott Wood
2008-10-09 2:36 ` Paul Mackerras
2008-10-11 22:32 ` Benjamin Herrenschmidt
2008-10-13 15:06 ` Scott Wood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9a53cf970810080831t3e79bef7i1ad05deb993494b7@mail.gmail.com \
--to=minhtuanmt1@gmail.com \
--cc=domino@mikroswiat.pl \
--cc=linuxppc-embedded@ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).