linux/debian/patches-rt/0082-slub-Enable-irqs-for-_...

52 lines
1.6 KiB
Diff
Raw Normal View History

2020-06-23 13:42:59 +00:00
From cdb48077b31503604eace5c253d95af45d57fb7f Mon Sep 17 00:00:00 2001
Message-Id: <cdb48077b31503604eace5c253d95af45d57fb7f.1592846147.git.zanussi@kernel.org>
In-Reply-To: <07cd0dbc80b976663c80755496a03f288decfe5a.1592846146.git.zanussi@kernel.org>
References: <07cd0dbc80b976663c80755496a03f288decfe5a.1592846146.git.zanussi@kernel.org>
From: Thomas Gleixner <tglx@linutronix.de>
2019-04-08 23:49:20 +00:00
Date: Wed, 9 Jan 2013 12:08:15 +0100
2020-06-23 13:42:59 +00:00
Subject: [PATCH 082/330] slub: Enable irqs for __GFP_WAIT
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.127-rt55.tar.xz
SYSTEM_RUNNING might be too late for enabling interrupts. Allocations
with GFP_WAIT can happen before that. So use this as an indicator.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
mm/slub.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/mm/slub.c b/mm/slub.c
2020-06-22 13:14:16 +00:00
index f3fcb9502093..d243c6ef7fc9 100644
--- a/mm/slub.c
+++ b/mm/slub.c
2019-04-08 23:49:20 +00:00
@@ -1570,10 +1570,17 @@ static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
void *start, *p;
int idx, order;
bool shuffle;
+ bool enableirqs = false;
flags &= gfp_allowed_mask;
if (gfpflags_allow_blocking(flags))
+ enableirqs = true;
+#ifdef CONFIG_PREEMPT_RT_FULL
+ if (system_state > SYSTEM_BOOTING)
+ enableirqs = true;
+#endif
+ if (enableirqs)
local_irq_enable();
flags |= s->allocflags;
2019-04-08 23:49:20 +00:00
@@ -1632,7 +1639,7 @@ static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
page->frozen = 1;
out:
- if (gfpflags_allow_blocking(flags))
+ if (enableirqs)
local_irq_disable();
if (!page)
return NULL;
2020-01-03 23:36:11 +00:00
--
2020-06-22 13:14:16 +00:00
2.17.1
2020-01-03 23:36:11 +00:00