Re: [PATCH] MAINTAINERS: Kdump maintainers update

2016-05-25 Thread Dave Young
Hi, Vivek On 05/25/16 at 09:37am, Vivek Goyal wrote: > On Wed, May 25, 2016 at 06:24:10AM -0700, Joe Perches wrote: > > On Wed, 2016-05-25 at 09:16 -0400, Vivek Goyal wrote: > > > I am proposing following updates to kdump maintainership. I have got > > > busy in other things and not getting time t

Re: [PATCH] MAINTAINERS: Kdump maintainers update

2016-05-25 Thread Simon Horman
On Wed, May 25, 2016 at 09:37:13AM -0400, Vivek Goyal wrote: > On Wed, May 25, 2016 at 06:24:10AM -0700, Joe Perches wrote: > > On Wed, 2016-05-25 at 09:16 -0400, Vivek Goyal wrote: > > > I am proposing following updates to kdump maintainership. I have got > > > busy in other things and not getting

Re: [PATCH] MAINTAINERS: Kdump maintainers update

2016-05-25 Thread Vivek Goyal
On Wed, May 25, 2016 at 06:24:10AM -0700, Joe Perches wrote: > On Wed, 2016-05-25 at 09:16 -0400, Vivek Goyal wrote: > > I am proposing following updates to kdump maintainership. I have got > > busy in other things and not getting time to spend on kdump.  > > > > Removed Haren Myneni as he has not

Re: [PATCH] MAINTAINERS: Kdump maintainers update

2016-05-25 Thread Joe Perches
On Wed, 2016-05-25 at 09:16 -0400, Vivek Goyal wrote: > I am proposing following updates to kdump maintainership. I have got > busy in other things and not getting time to spend on kdump.  > > Removed Haren Myneni as he has not participated in kdump development for > a long time now. > > Proposin

[PATCH] MAINTAINERS: Kdump maintainers update

2016-05-25 Thread Vivek Goyal
Hi, I am proposing following updates to kdump maintainership. I have got busy in other things and not getting time to spend on kdump. Removed Haren Myneni as he has not participated in kdump development for a long time now. Proposing adding the names of Dave and Baoquan as kdump maintainers as

Re: [PATCH kexec-tools 15/32] arm: fix get_kernel_stext_sym() to close its file

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:52 PM, Russell King wrote: > Fix get_kernel_stext_sym() so that it closes its file once it's > finsihed with it - there's no need to leak file descriptors. > > Signed-off-by: Russell King Reviewed-by: Pratyush Anand > --- > kexec/arch/arm/crashdump-arm.c | 23

Re: [PATCH kexec-tools 13/32] arm: fix pointer signedness warning in kexec-uImage-arm.c

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:52 PM, Russell King wrote: > kexec/arch/arm/kexec-uImage-arm.c: In function 'uImage_arm_probe': > kexec/arch/arm/kexec-uImage-arm.c:14:2: warning: pointer targets in passing > argument 1 of 'uImage_probe_kernel' differ in signedness [-Wpointer-sign] > > Signed-off-by: Rus

Re: [PATCH kexec-tools 14/32] arm: fix off-by-one on memory end

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:52 PM, Russell King wrote: > The memory range end is inclusive, not exclusive (see x86). We should > not be adding one to the value parsed from the /proc/iomem resources. > > Signed-off-by: Russell King Reviewed-by: Pratyush Anand I think, this also need to be fixed f

Re: [PATCH kexec-tools 12/32] kexec: add helper to exlude a region from a set of memory ranges

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:52 PM, Russell King wrote: > Add a helper to exclude a region from a set of memory ranges. > > Signed-off-by: Russell King > --- > kexec/mem_regions.c | 55 > + > kexec/mem_regions.h | 4 > 2 files changed, 59 in

Re: [PATCH kexec-tools 10/32] kexec: add generic helper to add to memory_regions

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:51 PM, Russell King wrote: > Add a helper to add a memory range to a memory_regions array. > > Signed-off-by: Russell King Reviewed-by: Pratyush Anand > --- > kexec/Makefile | 4 > kexec/mem_regions.c | 30 ++ > kexec/mem_regions

Re: [PATCH kexec-tools 11/32] kexec: add mem_regions sorting implementation

2016-05-25 Thread Pratyush Anand
On Tue, May 3, 2016 at 3:52 PM, Russell King wrote: > Add a mem_regions sorting implementation taken from the arm code. > > Signed-off-by: Russell King Reviewed-by: Pratyush Anand > --- > kexec/mem_regions.c | 27 +++ > kexec/mem_regions.h | 2 ++ > 2 files changed, 2