On Wed, Dec 02, 2020 at 11:00:05AM +0800, Jinyang He wrote:
Reading synci_step by using rdhwr instruction may return zero if no cacheShould this be someting like: Avoid endless loop, if no synci is needed ?
need be synchronized. On the one hand, to make sure all load operation and
store operation finished we do __sync() for every platform. On the other
hand, some platform need operate synci one time although step is zero.
diff --git a/arch/mips/kernel/relocate.c b/arch/mips/kernel/relocate.cwhy not do a
index 57bdd276..47aeb33 100644
--- a/arch/mips/kernel/relocate.c
+++ b/arch/mips/kernel/relocate.c
@@ -64,7 +64,7 @@ static void __init sync_icache(void *kbase, unsigned long kernel_length)
: "r" (kbase));
kbase += step;
- } while (kbase < kend);
+ } while (step && kbase < kend);
if (step == 0)
return;
before entering the loop ? According to MIPS32PRA no synci is needed,
if stepi value is zero.
Thomas.For this, my thought is that different platforms using the cache
PS: Does anybody know a reason, why this code doesn't use an old fashioned
dache/icache flushing, which might be slower but would work also on
legecy cores ?