mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-16 09:59:09 +00:00
26 lines
704 B
Diff
26 lines
704 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 3ba15c3528c8..726bb3dacd5b 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,7 +1,7 @@
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
VERSION = 5
|
|
PATCHLEVEL = 4
|
|
-SUBLEVEL = 9
|
|
+SUBLEVEL = 10
|
|
EXTRAVERSION =
|
|
NAME = Kleptomaniac Octopus
|
|
|
|
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
|
|
index 460afa415434..d30a2e6e68b4 100644
|
|
--- a/arch/powerpc/mm/mem.c
|
|
+++ b/arch/powerpc/mm/mem.c
|
|
@@ -120,7 +120,7 @@ static void flush_dcache_range_chunked(unsigned long start, unsigned long stop,
|
|
unsigned long i;
|
|
|
|
for (i = start; i < stop; i += chunk) {
|
|
- flush_dcache_range(i, min(stop, start + chunk));
|
|
+ flush_dcache_range(i, min(stop, i + chunk));
|
|
cond_resched();
|
|
}
|
|
}
|