From 6bbdffa8fb4a8b790e2d11190e8191648244d1b9 Mon Sep 17 00:00:00 2001 From: hanqf-git Date: Mon, 11 Mar 2024 10:17:22 +0800 Subject: [PATCH] Replace prefetchnta with prefetcht0 for crc32 --- crc/crc32_iscsi_01.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc/crc32_iscsi_01.asm b/crc/crc32_iscsi_01.asm index 35786da1..6326a8be 100644 --- a/crc/crc32_iscsi_01.asm +++ b/crc/crc32_iscsi_01.asm @@ -205,7 +205,7 @@ CONCAT(_crc_,i,:) crc32 crc2, qword [block_2 - i*8] %if i > 128*8 / 32 ; prefetch next 3KB data - prefetchnta [block_2 + 128*32 - i*32] + prefetcht0 [block_2 + 128*32 - i*32] %endif %assign i (i-1)