[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20140714134851.718deef4a2b43c9a360ab237@linux-foundation.org>
Date: Mon, 14 Jul 2014 13:48:51 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Vaibhav Shinde <v.bhav.shinde@...il.com>
Cc: tj@...nel.org, linux-kernel@...r.kernel.org, oleg@...hat.com,
Linus Torvalds <torvalds@...ux-foundation.org>
Subject: Re: task's thread_info print in kernel oops
On Mon, 14 Jul 2014 00:46:55 +0530 Vaibhav Shinde <v.bhav.shinde@...il.com> wrote:
> Dear All,
>
>
> During the kernel oops i observed the below debug message which shows the
> address of task's thread_info struct
>
> task: ffff880468e61a80 ti: ffff88026bc86000 task.ti: ffff88026bc86000
>
> ti: <current_thread_info()>
> task.ti <task_thread_info(current)
>
> As per my understanding, both the function calls will return the address of
> thread_info() struct of the current task,
> so it would be always the same.
>
> If so, could we apply the below change ?
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index b4e8500..904aeef 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -2902,9 +2902,8 @@ void show_regs_print_info(const char *log_lvl)
> {
> dump_stack_print_info(log_lvl);
>
> - printk("%stask: %p ti: %p task.ti: %p\n",
> - log_lvl, current, current_thread_info(),
> - task_thread_info(current));
> + printk("%stask: %p ti: %p\n",
> + log_lvl, current, current_thread_info());
> }
ia64 defines __HAVE_THREAD_FUNCTIONS and implements a custom
task_thread_info(). Whether the resulting output is useful I cannot
say...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists