mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
a5b250a428
B stepping were the first shipping Opterons. memcpy/memset/copy_page/ clear_page had special optimized version for them. These are really old and in the minority now and the difference to the generic versions (using rep microcode) is not that big anyways. So just remove them. TODO: figure out optimized versions for Intel Netburst based EM64T Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
15 lines
303 B
ArmAsm
15 lines
303 B
ArmAsm
/* Written 2003 by Andi Kleen, based on a kernel by Evandro Menezes */
|
|
|
|
/* Don't use streaming store because it's better when the target
|
|
ends up in cache. */
|
|
|
|
/* Could vary the prefetch distance based on SMP/UP */
|
|
|
|
.globl copy_page
|
|
.p2align 4
|
|
copy_page:
|
|
movl $4096/8,%ecx
|
|
rep
|
|
movsq
|
|
ret
|