diff options
Diffstat (limited to 'debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch')
-rw-r--r-- | debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch b/debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch index c233be3ef..9d7b596a1 100644 --- a/debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch +++ b/debian/patches-rt/0201-mm-slub-Don-t-resize-the-location-tracking-cache-on-.patch @@ -1,9 +1,9 @@ -From 6f5d1f04864beb65079068f48faf17c269c8509b Mon Sep 17 00:00:00 2001 +From d3f261aad58dac8596c9524a2565e5658a3de93e Mon Sep 17 00:00:00 2001 From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 26 Feb 2021 17:26:04 +0100 Subject: [PATCH 201/323] mm: slub: Don't resize the location tracking cache on PREEMPT_RT -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.204-rt100.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.215-rt107.tar.xz The location tracking cache has a size of a page and is resized if its current size is too small. @@ -19,7 +19,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> 1 file changed, 3 insertions(+) diff --git a/mm/slub.c b/mm/slub.c -index cb414c1f9ef6..57c598dd7454 100644 +index cb414c1f9ef6b..57c598dd7454e 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -4682,6 +4682,9 @@ static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags) @@ -33,5 +33,5 @@ index cb414c1f9ef6..57c598dd7454 100644 l = (void *)__get_free_pages(flags, order); -- -2.43.0 +2.44.0 |