From: Pratyush Anand <panand@redhat.com>
To: AKASHI Takahiro <takahiro.akashi@linaro.org>,
catalin.marinas@arm.com, will.deacon@arm.com, vgoyal@redhat.com,
hbabus@us.ibm.com
Cc: linaro-kernel@lists.linaro.org, geoff@infradead.org,
kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
broonie@kernel.org, david.griego@linaro.org,
Dave Young <dyoung@redhat.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/5] arm64: kdump: reserve memory for crash dump kernel
Date: Thu, 09 Apr 2015 18:39:55 +0530 [thread overview]
Message-ID: <55267A23.2040007@redhat.com> (raw)
In-Reply-To: <1427358533-3754-2-git-send-email-takahiro.akashi@linaro.org>
Hi Takahiro,
On Thursday 26 March 2015 01:58 PM, AKASHI Takahiro wrote:
> Crash dump kernel will access memory regions in system kernel via
> copy_oldmem_page(), which reads a page with ioremap'ing it assuming that
> such pages are not part of main memory of crash dump kernel.
> This is true under non-UEFI environment because kexec-tools modifies
> a device tree adding "usablemem" attributes to memory sections.
> Under UEFI, however, this is not true because UEFI remove memory sections
> in a device tree and export all the memory regions, even though they belong
> to system kernel.
>
> So we should add "mem=X[MG]" boot parameter to limit the meory size and
> avoid hitting the following assertion in ioremap():
> if (WARN_ON(pfn_valid(__phys_to_pfn(phys_addr))))
> return NULL;
Well I am using your updated kexec-tool which has support of automatic
addition of "mem=" parameter. I found that this warning is still
appearing and therefore another error about "Kdump: vmcore not initialized".
Memory address for which ioremap failed was almost at the top of
crash_reserved_mem. So I modified kexec-tool [1] to accept user specific
mem= parameter with a value lesser than physical location which was
being remapped, however still the warning was there.
Further I noticed that there is no reserved memblock with nonzero
memblock_region->size when early_mem -> memblock_enforce_memory_limit is
called. Therefore this mem= param is not limiting memory location in my
case.
I was just wondering, why do not we use ioremap_cache instead of ioremap
in copy_oldmem_page?
~Pratyush
[1]
https://github.com/pratyushanand/kexec-tools/commit/7dc38d587cb32d4522f6baf035d09eeaf71c5105
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
WARNING: multiple messages have this Message-ID (diff)
From: panand@redhat.com (Pratyush Anand)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] arm64: kdump: reserve memory for crash dump kernel
Date: Thu, 09 Apr 2015 18:39:55 +0530 [thread overview]
Message-ID: <55267A23.2040007@redhat.com> (raw)
In-Reply-To: <1427358533-3754-2-git-send-email-takahiro.akashi@linaro.org>
Hi Takahiro,
On Thursday 26 March 2015 01:58 PM, AKASHI Takahiro wrote:
> Crash dump kernel will access memory regions in system kernel via
> copy_oldmem_page(), which reads a page with ioremap'ing it assuming that
> such pages are not part of main memory of crash dump kernel.
> This is true under non-UEFI environment because kexec-tools modifies
> a device tree adding "usablemem" attributes to memory sections.
> Under UEFI, however, this is not true because UEFI remove memory sections
> in a device tree and export all the memory regions, even though they belong
> to system kernel.
>
> So we should add "mem=X[MG]" boot parameter to limit the meory size and
> avoid hitting the following assertion in ioremap():
> if (WARN_ON(pfn_valid(__phys_to_pfn(phys_addr))))
> return NULL;
Well I am using your updated kexec-tool which has support of automatic
addition of "mem=" parameter. I found that this warning is still
appearing and therefore another error about "Kdump: vmcore not initialized".
Memory address for which ioremap failed was almost at the top of
crash_reserved_mem. So I modified kexec-tool [1] to accept user specific
mem= parameter with a value lesser than physical location which was
being remapped, however still the warning was there.
Further I noticed that there is no reserved memblock with nonzero
memblock_region->size when early_mem -> memblock_enforce_memory_limit is
called. Therefore this mem= param is not limiting memory location in my
case.
I was just wondering, why do not we use ioremap_cache instead of ioremap
in copy_oldmem_page?
~Pratyush
[1]
https://github.com/pratyushanand/kexec-tools/commit/7dc38d587cb32d4522f6baf035d09eeaf71c5105
WARNING: multiple messages have this Message-ID (diff)
From: Pratyush Anand <panand@redhat.com>
To: AKASHI Takahiro <takahiro.akashi@linaro.org>,
catalin.marinas@arm.com, will.deacon@arm.com, vgoyal@redhat.com,
hbabus@us.ibm.com
Cc: linaro-kernel@lists.linaro.org, geoff@infradead.org,
kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
broonie@kernel.org, david.griego@linaro.org,
linux-arm-kernel@lists.infradead.org,
Dave Young <dyoung@redhat.com>
Subject: Re: [PATCH 1/5] arm64: kdump: reserve memory for crash dump kernel
Date: Thu, 09 Apr 2015 18:39:55 +0530 [thread overview]
Message-ID: <55267A23.2040007@redhat.com> (raw)
In-Reply-To: <1427358533-3754-2-git-send-email-takahiro.akashi@linaro.org>
Hi Takahiro,
On Thursday 26 March 2015 01:58 PM, AKASHI Takahiro wrote:
> Crash dump kernel will access memory regions in system kernel via
> copy_oldmem_page(), which reads a page with ioremap'ing it assuming that
> such pages are not part of main memory of crash dump kernel.
> This is true under non-UEFI environment because kexec-tools modifies
> a device tree adding "usablemem" attributes to memory sections.
> Under UEFI, however, this is not true because UEFI remove memory sections
> in a device tree and export all the memory regions, even though they belong
> to system kernel.
>
> So we should add "mem=X[MG]" boot parameter to limit the meory size and
> avoid hitting the following assertion in ioremap():
> if (WARN_ON(pfn_valid(__phys_to_pfn(phys_addr))))
> return NULL;
Well I am using your updated kexec-tool which has support of automatic
addition of "mem=" parameter. I found that this warning is still
appearing and therefore another error about "Kdump: vmcore not initialized".
Memory address for which ioremap failed was almost at the top of
crash_reserved_mem. So I modified kexec-tool [1] to accept user specific
mem= parameter with a value lesser than physical location which was
being remapped, however still the warning was there.
Further I noticed that there is no reserved memblock with nonzero
memblock_region->size when early_mem -> memblock_enforce_memory_limit is
called. Therefore this mem= param is not limiting memory location in my
case.
I was just wondering, why do not we use ioremap_cache instead of ioremap
in copy_oldmem_page?
~Pratyush
[1]
https://github.com/pratyushanand/kexec-tools/commit/7dc38d587cb32d4522f6baf035d09eeaf71c5105
next prev parent reply other threads:[~2015-04-09 13:09 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-26 8:28 [PATCH 0/5] arm64: add kdump support AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` [PATCH 1/5] arm64: kdump: reserve memory for crash dump kernel AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 18:30 ` Geoff Levand
2015-03-26 18:30 ` Geoff Levand
2015-03-26 18:30 ` Geoff Levand
2015-03-27 4:43 ` Geoff Levand
2015-03-27 4:43 ` Geoff Levand
2015-03-27 4:43 ` Geoff Levand
2015-03-30 2:35 ` AKASHI Takahiro
2015-03-30 2:35 ` AKASHI Takahiro
2015-03-30 2:35 ` AKASHI Takahiro
2015-04-09 13:09 ` Pratyush Anand [this message]
2015-04-09 13:09 ` Pratyush Anand
2015-04-09 13:09 ` Pratyush Anand
2015-04-10 5:57 ` AKASHI Takahiro
2015-04-10 5:57 ` AKASHI Takahiro
2015-04-10 5:57 ` AKASHI Takahiro
2015-04-10 6:35 ` Pratyush Anand
2015-04-10 6:35 ` Pratyush Anand
2015-04-10 6:35 ` Pratyush Anand
2015-03-26 8:28 ` [PATCH 2/5] arm64: kdump: implement machine_crash_shutdown() AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` [PATCH 3/5] arm64: kdump: do not go into EL2 before starting a crash dump kernel AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 22:29 ` Geoff Levand
2015-03-26 22:29 ` Geoff Levand
2015-03-26 22:29 ` Geoff Levand
2015-03-30 3:21 ` AKASHI Takahiro
2015-03-30 3:21 ` AKASHI Takahiro
2015-03-30 3:21 ` AKASHI Takahiro
2015-03-26 8:28 ` [PATCH 4/5] arm64: add kdump support AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` [PATCH 5/5] arm64: enable kdump in the arm64 defconfig AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-03-26 8:28 ` AKASHI Takahiro
2015-04-01 15:56 ` [PATCH 0/5] arm64: add kdump support Pratyush Anand
2015-04-01 15:56 ` Pratyush Anand
2015-04-01 15:56 ` Pratyush Anand
2015-04-01 23:27 ` AKASHI Takahiro
2015-04-01 23:27 ` AKASHI Takahiro
2015-04-01 23:27 ` AKASHI Takahiro
2015-04-02 4:58 ` Pratyush Anand
2015-04-02 4:58 ` Pratyush Anand
2015-04-02 4:58 ` Pratyush Anand
2015-04-02 5:37 ` AKASHI Takahiro
2015-04-02 5:37 ` AKASHI Takahiro
2015-04-02 5:37 ` AKASHI Takahiro
2015-04-02 6:01 ` Pratyush Anand
2015-04-02 6:01 ` Pratyush Anand
2015-04-02 6:01 ` Pratyush Anand
2015-04-02 7:48 ` AKASHI Takahiro
2015-04-02 7:48 ` AKASHI Takahiro
2015-04-02 7:48 ` AKASHI Takahiro
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=55267A23.2040007@redhat.com \
--to=panand@redhat.com \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=david.griego@linaro.org \
--cc=dyoung@redhat.com \
--cc=geoff@infradead.org \
--cc=hbabus@us.ibm.com \
--cc=kexec@lists.infradead.org \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=takahiro.akashi@linaro.org \
--cc=vgoyal@redhat.com \
--cc=will.deacon@arm.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.