Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753038AbbL2Ljz (ORCPT ); Tue, 29 Dec 2015 06:39:55 -0500 Received: from terminus.zytor.com ([198.137.202.10]:57554 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751538AbbL2Ljw (ORCPT ); Tue, 29 Dec 2015 06:39:52 -0500 Date: Tue, 29 Dec 2015 03:39:38 -0800 From: tip-bot for Jan Beulich Message-ID: Cc: mingo@kernel.org, hpa@zytor.com, JBeulich@suse.com, linux-kernel@vger.kernel.org, luto@kernel.org, tglx@linutronix.de, jbeulich@suse.com Reply-To: mingo@kernel.org, hpa@zytor.com, jbeulich@suse.com, tglx@linutronix.de, luto@kernel.org, JBeulich@suse.com, linux-kernel@vger.kernel.org In-Reply-To: <56797D8402000078000C24F0@prv-mh.provo.novell.com> References: <56797D8402000078000C24F0@prv-mh.provo.novell.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/mm] x86/LDT: Print the real LDT base address Git-Commit-ID: 0d430e3fb3f7cdc13c0d22078b820f682821b45a X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1547 Lines: 39 Commit-ID: 0d430e3fb3f7cdc13c0d22078b820f682821b45a Gitweb: http://git.kernel.org/tip/0d430e3fb3f7cdc13c0d22078b820f682821b45a Author: Jan Beulich AuthorDate: Tue, 22 Dec 2015 08:42:44 -0700 Committer: Thomas Gleixner CommitDate: Tue, 29 Dec 2015 12:34:38 +0100 x86/LDT: Print the real LDT base address 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 Acked-by: Andy Lutomirski Link: http://lkml.kernel.org/r/56797D8402000078000C24F0@prv-mh.provo.novell.com Signed-off-by: Thomas Gleixner --- arch/x86/kernel/process_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index e835d26..b9d99e0 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c @@ -125,7 +125,7 @@ void release_thread(struct task_struct *dead_task) if (dead_task->mm->context.ldt) { pr_warn("WARNING: dead process %s 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(); } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/