All of lore.kernel.org
 help / color / mirror / Atom feed
From: AKASHI Takahiro <takahiro.akashi@linaro.org>
To: Sandeepa Prabhu <sandeepa.prabhu@broadcom.com>
Cc: geoff@infradead.org, Pratyush Anand <panand@redhat.com>,
	horms@verge.net.au, kexec@lists.infradead.org
Subject: Re: [PATCH v4 0/9] (kexec-tools) arm64: add kdump support
Date: Fri, 4 Nov 2016 11:31:46 +0900	[thread overview]
Message-ID: <20161104023145.GB381@linaro.org> (raw)
In-Reply-To: <CAMNZz5CbOo6jE5q=7VhKR5y=BfQim4vdjtZwjk--D=QZCgGEpQ@mail.gmail.com>

Hello, Sandeepa!

I pushed the patches into:
https://git.linaro.org/people/takahiro.akashi/linux-aarch64.git arm64/kdump
https://git.linaro.org/people/takahiro.akashi/kexec-tools.git arm64/kdump

# Those repos are not well maintained, but I will try to keep them
  updated.

Thanks,
-Takahiro AKASHI

On Wed, Nov 02, 2016 at 06:51:51PM +0530, Sandeepa Prabhu wrote:
> Akashi/Pratyush,
> 
> Is there a public git repo I can pull to test this patchset?
> 
> ~Sandeepa
> 
> On Wed, Nov 2, 2016 at 10:11 AM, AKASHI Takahiro <takahiro.akashi@linaro.org
> > wrote:
> 
> > My kernel patches of kdump suport on arm64 are currently under reviews.
> >
> > This patchset is synced with them (v27 [1]) and provides necessary changes
> > for kexec-tools. It can be applied on top of kexec-tools master branch.
> >
> > [1] T.B.D.
> >
> > Changes for v4:
> >  - rebased on the master branch (including Geoff's v6)
> >  - revive "linux,usable-memory-range" DT property (from v2), dropping
> >    use of "reserved-memory" nodes introduced in v3 (patch #8)
> >  - extend the semantics of kexec_iomem_for_each_line() per Pratyush
> >    (patch #1)
> >
> > Changes for v3:
> >  - rebased on Geoff's v5
> >  - fix a value of estimated PHYS_OFFSET
> >  - add a kernel code/data segment because they now reside out of linear
> >    mapping due to KASLR introduction
> >  - remove "linux,usable-memory-range" dependency, instead using
> >    "reserved-memory" node
> >  - add -mem-min/-mem-max support
> >
> > Changes for v2:
> >  - trim a temoprary buffer in setup_2nd_dtb()
> >  - add patch#6("kexec: generalize and rename get_kernel_stext_sym()")
> >  - update patch#7 from Pratyush
> >    (re-worked by akashi)
> >
> > AKASHI Takahiro (7):
> >   kexec: exntend the semantics of kexec_iomem_for_each_line
> >   arm64: identify PHYS_OFFSET correctly
> >   arm64: kdump: identify memory regions
> >   arm64: kdump: add elf core header segment
> >   arm64: kdump: set up kernel image segment
> >   arm64: kdump: set up other segments
> >   arm64: kdump: add DT properties to crash dump kernel's dtb
> >
> > Pratyush Anand (2):
> >   kexec: generalize and rename get_kernel_stext_sym()
> >   arm64: kdump: Add support for binary image files
> >
> >  kexec/Makefile                       |   1 +
> >  kexec/arch/arm/crashdump-arm.c       |  40 +------
> >  kexec/arch/arm64/Makefile            |   2 +
> >  kexec/arch/arm64/crashdump-arm64.c   | 219 ++++++++++++++++++++++++++++++
> > ++++-
> >  kexec/arch/arm64/crashdump-arm64.h   |  18 ++-
> >  kexec/arch/arm64/iomem.h             |  10 ++
> >  kexec/arch/arm64/kexec-arm64.c       | 118 ++++++++++++++++---
> >  kexec/arch/arm64/kexec-elf-arm64.c   |  25 +++-
> >  kexec/arch/arm64/kexec-image-arm64.c |  12 ++
> >  kexec/arch/i386/crashdump-x86.c      |  29 -----
> >  kexec/kexec-iomem.c                  |  15 ++-
> >  kexec/kexec.h                        |   2 +
> >  kexec/symbols.c                      |  41 +++++++
> >  13 files changed, 437 insertions(+), 95 deletions(-)
> >  create mode 100644 kexec/arch/arm64/iomem.h
> >  create mode 100644 kexec/symbols.c
> >
> > --
> > 2.10.0
> >
> >
> > _______________________________________________
> > kexec mailing list
> > kexec@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/kexec
> >

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

      parent reply	other threads:[~2016-11-04  2:23 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-02  4:41 [PATCH v4 0/9] (kexec-tools) arm64: add kdump support AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 1/9] kexec: exntend the semantics of kexec_iomem_for_each_line AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 2/9] kexec: generalize and rename get_kernel_stext_sym() AKASHI Takahiro
2016-11-02  9:35   ` [Resend PATCH " Pratyush Anand
2016-11-02  4:41 ` [PATCH v4 3/9] arm64: identify PHYS_OFFSET correctly AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 4/9] arm64: kdump: identify memory regions AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 5/9] arm64: kdump: add elf core header segment AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 6/9] arm64: kdump: set up kernel image segment AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 7/9] arm64: kdump: set up other segments AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 8/9] arm64: kdump: add DT properties to crash dump kernel's dtb AKASHI Takahiro
2016-11-02  4:41 ` [PATCH v4 9/9] arm64: kdump: Add support for binary image files AKASHI Takahiro
2016-11-02  9:33 ` [PATCH v4 0/9] (kexec-tools) arm64: add kdump support Pratyush Anand
     [not found] ` <CAMNZz5CbOo6jE5q=7VhKR5y=BfQim4vdjtZwjk--D=QZCgGEpQ@mail.gmail.com>
2016-11-04  2:31   ` AKASHI Takahiro [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161104023145.GB381@linaro.org \
    --to=takahiro.akashi@linaro.org \
    --cc=geoff@infradead.org \
    --cc=horms@verge.net.au \
    --cc=kexec@lists.infradead.org \
    --cc=panand@redhat.com \
    --cc=sandeepa.prabhu@broadcom.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.