Magellan Linux

Annotation of /trunk/kernel-alx/patches-5.4/0109-5.4.10-all-fixes.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3490 - (hide annotations) (download)
Mon May 11 14:36:03 2020 UTC (4 years ago) by niro
File size: 704 byte(s)
-linux-5.4.10
1 niro 3490 diff --git a/Makefile b/Makefile
2     index 3ba15c3528c8..726bb3dacd5b 100644
3     --- a/Makefile
4     +++ b/Makefile
5     @@ -1,7 +1,7 @@
6     # SPDX-License-Identifier: GPL-2.0
7     VERSION = 5
8     PATCHLEVEL = 4
9     -SUBLEVEL = 9
10     +SUBLEVEL = 10
11     EXTRAVERSION =
12     NAME = Kleptomaniac Octopus
13    
14     diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
15     index 460afa415434..d30a2e6e68b4 100644
16     --- a/arch/powerpc/mm/mem.c
17     +++ b/arch/powerpc/mm/mem.c
18     @@ -120,7 +120,7 @@ static void flush_dcache_range_chunked(unsigned long start, unsigned long stop,
19     unsigned long i;
20    
21     for (i = start; i < stop; i += chunk) {
22     - flush_dcache_range(i, min(stop, start + chunk));
23     + flush_dcache_range(i, min(stop, i + chunk));
24     cond_resched();
25     }
26     }