diff options
Diffstat (limited to 'debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch')
-rw-r--r-- | debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch b/debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch index d3496f78e..be6c33589 100644 --- a/debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch +++ b/debian/patches-rt/0205-slub-Enable-irqs-for-__GFP_WAIT.patch @@ -1,8 +1,8 @@ -From c0f57e0b6278391f1fec71ccb1e25fe46deade2b Mon Sep 17 00:00:00 2001 +From 42fdb68c7f5a176c19ee559ccd79a9466b580340 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Wed, 9 Jan 2013 12:08:15 +0100 Subject: [PATCH 205/323] slub: Enable irqs for __GFP_WAIT -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 SYSTEM_RUNNING might be too late for enabling interrupts. Allocations with GFP_WAIT can happen before that. So use this as an indicator. @@ -18,7 +18,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/mm/slub.c b/mm/slub.c -index ac2ddf6a4220..00f1d1206dbc 100644 +index ac2ddf6a42204..00f1d1206dbcf 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -1750,10 +1750,18 @@ static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node) @@ -72,5 +72,5 @@ index ac2ddf6a4220..00f1d1206dbc 100644 s = slab_pre_alloc_hook(s, &objcg, size, flags); if (unlikely(!s)) -- -2.43.0 +2.44.0 |