$ git clone -n https://gitee.com/leacyand/zstd_1.git /var/lib/mock/dist-an23-build-537679-83194/root/chroot_tmpdir/scmroot/zstd_1 Cloning into '/var/lib/mock/dist-an23-build-537679-83194/root/chroot_tmpdir/scmroot/zstd_1'... $ git fetch origin 4b55a7132c4560be109014d1e1deb7b74fc558af:KOJI_FETCH_HEAD From https://gitee.com/leacyand/zstd_1 * [new ref] 4b55a7132c4560be109014d1e1deb7b74fc558af -> KOJI_FETCH_HEAD $ git reset --hard KOJI_FETCH_HEAD HEAD is now at 4b55a71 Subject: [PATCH] Enable PREFETCH_L1 for RISC-V to improve performance This patch enables the PREFETCH_L1(match) optimization in ZSTD_execSequence() for RISC-V (__riscv), in addition to the existing AArch64 support. By prefetching the match source address before the actual copy, it helps hide memory latency during sequence execution. Benchmarks on Sophgo SG2044 show marginal but consistent gains: decompression speed improves by ~0.14% and compression speed by ~0.28%, with no regressions.