[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1478617545-8443-3-git-send-email-aryabinin@virtuozzo.com>
Date: Tue, 8 Nov 2016 18:05:45 +0300
From: Andrey Ryabinin <aryabinin@...tuozzo.com>
To: Christoph Hellwig <hch@....de>
CC: Andrew Morton <akpm@...ux-foundation.org>, <linux-mm@...ck.org>,
<linux-rt-users@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
"Andrey Ryabinin" <aryabinin@...tuozzo.com>,
Andy Lutomirski <luto@...nel.org>,
"Joel Fernandes" <joelaf@...gle.com>,
Jisheng Zhang <jszhang@...vell.com>,
"Chris Wilson" <chris@...is-wilson.co.uk>,
John Dias <joaodias@...gle.com>,
"Thomas Gleixner" <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>, <x86@...nel.org>
Subject: [PATCH 3/3] x86/ldt: use vfree_atomic() to free ldt entries
vfree() is going to use sleeping lock. free_ldt_struct()
may be called with disabled preemption, therefore we must
use vfree_atomic() here.
E.g. call trace:
vfree()
free_ldt_struct()
destroy_context_ldt()
__mmdrop()
finish_task_switch()
schedule_tail()
ret_from_fork()
Signed-off-by: Andrey Ryabinin <aryabinin@...tuozzo.com>
Cc: Andy Lutomirski <luto@...nel.org>
Cc: Joel Fernandes <joelaf@...gle.com>
Cc: Christoph Hellwig <hch@....de>
Cc: Jisheng Zhang <jszhang@...vell.com>
Cc: Chris Wilson <chris@...is-wilson.co.uk>
Cc: John Dias <joaodias@...gle.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: "H. Peter Anvin" <hpa@...or.com>
Cc: x86@...nel.org
---
arch/x86/kernel/ldt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/ldt.c b/arch/x86/kernel/ldt.c
index 6707039..4d12cdf 100644
--- a/arch/x86/kernel/ldt.c
+++ b/arch/x86/kernel/ldt.c
@@ -93,7 +93,7 @@ static void free_ldt_struct(struct ldt_struct *ldt)
paravirt_free_ldt(ldt->entries, ldt->size);
if (ldt->size * LDT_ENTRY_SIZE > PAGE_SIZE)
- vfree(ldt->entries);
+ vfree_atomic(ldt->entries);
else
free_page((unsigned long)ldt->entries);
kfree(ldt);
--
2.7.3
Powered by blists - more mailing lists