diff options
author | Jan Beulich <JBeulich@suse.com> | 2015-12-22 18:42:44 +0300 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2016-03-21 04:17:57 +0300 |
commit | 0a165ad225ca19a2468d8e4281cc7d75d139aa5d (patch) | |
tree | da29de2a2be16ec9fc892840770fa39fa4c7f58d /arch | |
parent | 78578995555b40356a7c4a64d772fe169bb42767 (diff) | |
download | linux-0a165ad225ca19a2468d8e4281cc7d75d139aa5d.tar.xz |
x86/LDT: Print the real LDT base address
commit 0d430e3fb3f7cdc13c0d22078b820f682821b45a upstream.
This was meant to print base address and entry count; make it do so
again.
Fixes: 37868fe113ff "x86/ldt: Make modify_ldt synchronous"
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andy Lutomirski <luto@kernel.org>
Link: http://lkml.kernel.org/r/56797D8402000078000C24F0@prv-mh.provo.novell.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
[lizf: Backported to 3.4: adjust context]
Signed-off-by: Zefan Li <lizefan@huawei.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/process_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 3ebca08bf1e8..d5d7313ed430 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c @@ -119,7 +119,7 @@ void release_thread(struct task_struct *dead_task) if (dead_task->mm->context.ldt) { printk("WARNING: dead process %8s still has LDT? <%p/%d>\n", dead_task->comm, - dead_task->mm->context.ldt, + dead_task->mm->context.ldt->entries, dead_task->mm->context.ldt->size); BUG(); } |