From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753455AbcFFVsW (ORCPT ); Mon, 6 Jun 2016 17:48:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41975 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753422AbcFFVsU (ORCPT ); Mon, 6 Jun 2016 17:48:20 -0400 Date: Mon, 6 Jun 2016 22:45:48 +0200 From: Oleg Nesterov To: Dmitry Safonov Cc: linux-kernel@vger.kernel.org, mingo@redhat.com, luto@amacapital.net, tglx@linutronix.de, hpa@zytor.com, x86@kernel.org, 0x7f454c46@gmail.com, gorcunov@openvz.org, xemul@virtuozzo.com, khorenko@virtuozzo.com, Andy Lutomirski , Alexander Viro , linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 4/6] x86/coredump: use core regs, rather that TIF_IA32 flag Message-ID: <20160606204548.GA23681@redhat.com> References: <1464786697-20639-1-git-send-email-dsafonov@virtuozzo.com> <1464786697-20639-5-git-send-email-dsafonov@virtuozzo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1464786697-20639-5-git-send-email-dsafonov@virtuozzo.com> User-Agent: Mutt/1.5.18 (2008-05-17) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Mon, 06 Jun 2016 21:48:19 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/01, Dmitry Safonov wrote: > > static int fill_thread_core_info(struct elf_thread_core_info *t, > const struct user_regset_view *view, > - long signr, size_t *total) > + long signr, size_t *total, > + struct pt_regs *regs __maybe_unused) > { > unsigned int i; > > @@ -1652,11 +1653,11 @@ static int fill_thread_core_info(struct elf_thread_core_info *t, > */ > fill_prstatus(&t->prstatus, t->task, signr); > (void) view->regsets[0].get(t->task, &view->regsets[0], > - 0, PR_REG_SIZE(t->prstatus.pr_reg), > + 0, PR_REG_SIZE(t->prstatus.pr_reg, regs), Hmm. I don't understand this... Note that this "regs" argument has nothing to do with t->task if the process is multithreaded, > @@ -1772,7 +1773,8 @@ static int fill_note_info(struct elfhdr *elf, int phdrs, > * Now fill in each thread's information. > */ > for (t = info->thread; t != NULL; t = t->next) > - if (!fill_thread_core_info(t, view, siginfo->si_signo, &info->size)) > + if (!fill_thread_core_info(t, view, siginfo->si_signo, > + &info->size, regs)) fill_note_info(..., args) is called with args = task_pt_regs(dumper_thread). Oleg.