Re: [PATHC v2 0/9] ima: carry the measurement list across kexec

2016-09-20 Thread Eric W. Biederman
Thiago Jung Bauermann writes: > Am Samstag, 17 September 2016, 00:17:37 schrieb Eric W. Biederman: >> Thiago Jung Bauermann writes: >> > Hello Eric, >> > >> > Am Freitag, 16 September 2016, 14:47:13 schrieb Eric W. Biederman: >> >> I

Re: [PATCH v26 6/7] arm64: kdump: update a kernel doc

2016-09-20 Thread AKASHI Takahiro
On Fri, Sep 16, 2016 at 05:08:28PM +0100, James Morse wrote: > Hi Akashi, > > On 07/09/16 05:29, AKASHI Takahiro wrote: > > This patch adds arch specific descriptions about kdump usage on arm64 > > to kdump.txt. > > > diff --git a/Documentation/kdump/kdump.txt b/Documentation/kdump/kdump.txt >

Re: [PATCH v26 2/7] arm64: kdump: implement machine_crash_shutdown()

2016-09-20 Thread AKASHI Takahiro
On Fri, Sep 16, 2016 at 03:49:31PM +0100, James Morse wrote: > On 16/09/16 04:21, AKASHI Takahiro wrote: > > On Wed, Sep 14, 2016 at 07:09:33PM +0100, James Morse wrote: > >> On 07/09/16 05:29, AKASHI Takahiro wrote: > >>> Primary kernel calls machine_crash_shutdown() to shut down non-boot cpus >

Re: [V4 PATCH 1/2] x86/panic: Replace smp_send_stop() with kdump friendly version in panic path

2016-09-20 Thread Xunlei Pang
On 2016/08/15/ at 19:22, Hidehiro Kawai wrote: > Hi Dave, > > Thank you for the review. > >> From: Dave Young [mailto:dyo...@redhat.com] >> Sent: Friday, August 12, 2016 12:17 PM >> >> Thanks for the update. >> On 08/10/16 at 05:09pm, Hidehiro Kawai wrote: >>> Daniel Walker reported problems which

[PATCH v3 1/3] open_dump_bitmap: open bitmap file in non-cyclic case

2016-09-20 Thread Martin Wilck
The logic of set_bitmap() requires that a bitmap fd exists in the non-cyclic case. Signed-off-by: Martin Wilck --- makedumpfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makedumpfile.c b/makedumpfile.c index d168dfd..6164468 100644 ---

[PATCH v3 3/3] close_dump_bitmap: simplify logic

2016-09-20 Thread Martin Wilck
The boolean expression replicates the logic of open_dump_bitmap(). It's simpler and less error-prone to simply check if fd_bitmap is valid. Signed-off-by: Martin Wilck --- makedumpfile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/makedumpfile.c

[PATCH v3 2/3] move call to open_dump_bitmap() to after call to initial()

2016-09-20 Thread Martin Wilck
When open_files_for_creating_dumpfile() is called, we don't have all necessary information to determine whether a bitmap file is actually needed. In particular, we don't know whether info->flag_cyclic will ultimately be set. This patch moves the call to open_dump_bitmap() to after initialize()

Re: [PATCH v3 3/3] close_dump_bitmap: simplify logic

2016-09-20 Thread Martin Wilck
Kumagai-san, On Tue, 2016-09-20 at 09:43 +, Atsushi Kumagai wrote: >  > This version looks good, so could you add your Signed-off-by ? OK, I'll resend the whole v3 series. Martin ___ kexec mailing list kexec@lists.infradead.org

RE: Re: [V4 PATCH 1/2] x86/panic: Replace smp_send_stop() with kdump friendly version in panic path

2016-09-20 Thread 河合英宏 / KAWAI,HIDEHIRO
Hi Xunlei, > From: Xunlei Pang [mailto:xp...@redhat.com] > Sent: Tuesday, September 20, 2016 4:40 PM > On 2016/08/15/ at 19:22, Hidehiro Kawai wrote: > > Hi Dave, > > > > Thank you for the review. > > > >> From: Dave Young [mailto:dyo...@redhat.com] > >> Sent: Friday, August 12, 2016 12:17 PM >

RE: [PATCH v3 3/3] close_dump_bitmap: simplify logic

2016-09-20 Thread Atsushi Kumagai
Hello Martin, >The boolean expression replicates the logic of open_dump_bitmap(). >It's simpler and less error-prone to simply check if fd_bitmap is >valid. > >(I forgot to apply the very change that Petr had asked for in V2 of >this patch. I'm very sorry. Please apply V3). This version looks

RE: Re: [V4 PATCH 2/2] mips/panic: Replace smp_send_stop() with kdump friendly version in panic path

2016-09-20 Thread 河合英宏 / KAWAI,HIDEHIRO
Dave Young suggested to me to explain the problem in more detail, so here is the revised commit description. The patch is now in -mm, so I copied Cc list from -mm version. Also I added Corey Minyard's Tested-by and Reviewed-by. From: Hidehiro Kawai Subject:

RE: RE: Re: [V4 PATCH 1/2] x86/panic: Replace smp_send_stop() with kdump friendly version in panic path

2016-09-20 Thread 河合英宏 / KAWAI,HIDEHIRO
Here is the revised commit description reflecting Dave's comment. Cc list was copied from -mm version. From: Hidehiro Kawai Subject: x86/panic: replace smp_send_stop() with kdump friendly version in panic path This patch fixes a problem reported by Daniel Walker

Re: [PATCH v10 RESEND 0/3] Documentation: Add description of enable multi-cpus support for kdump

2016-09-20 Thread Jonathan Corbet
On Mon, 19 Sep 2016 13:59:46 +0800 Baoquan He wrote: > This is v10 post. In this patchset patch 1/3 is added to give more details > about nr_cpus and maxcpus in kernel-parameters.txt. This is suggested by > Jonathan since the description of them is unclear so that people can't

Re: [PATCH v10 RESEND 0/3] Documentation: Add description of enable multi-cpus support for kdump

2016-09-20 Thread Baoquan He
On 09/20/16 at 06:03pm, Jonathan Corbet wrote: > On Mon, 19 Sep 2016 13:59:46 +0800 > Baoquan He wrote: > > > This is v10 post. In this patchset patch 1/3 is added to give more details > > about nr_cpus and maxcpus in kernel-parameters.txt. This is suggested by > > Jonathan