Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1286871 > unrolled thread
| Started by | Daniel Kiper <daniel.kiper@oracle.com> |
|---|---|
| First post | 2015-12-08 23:00 +0100 |
| Last post | 2015-12-09 04:00 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 11/14] crashdump/ppc64: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:00 +0100
Re: [PATCH 11/14] crashdump/ppc64: Add print_crashkernel_region_size() function Dave Young <dyoung@redhat.com> - 2015-12-09 04:00 +0100
| From | Daniel Kiper <daniel.kiper@oracle.com> |
|---|---|
| Date | 2015-12-08 23:00 +0100 |
| Subject | [PATCH 11/14] crashdump/ppc64: Add print_crashkernel_region_size() function |
| Message-ID | <qDysG-7MA-5@gated-at.bofh.it> |
Provide just print_crashkernel_region_size() stub. This way
we can properly build kexec utility on ppc64 arch even
if the functionality is not available on it.
Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
---
kexec/arch/ppc64/crashdump-ppc64.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/kexec/arch/ppc64/crashdump-ppc64.c b/kexec/arch/ppc64/crashdump-ppc64.c
index b3c8928..49af7a6 100644
--- a/kexec/arch/ppc64/crashdump-ppc64.c
+++ b/kexec/arch/ppc64/crashdump-ppc64.c
@@ -527,6 +527,11 @@ int is_crashkernel_mem_reserved(void)
return 1;
}
+void print_crashkernel_region_size(void)
+{
+ printf("-1\n");
+}
+
#if 0
static int sort_regions(mem_rgns_t *rgn)
{
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Dave Young <dyoung@redhat.com> |
|---|---|
| Date | 2015-12-09 04:00 +0100 |
| Subject | Re: [PATCH 11/14] crashdump/ppc64: Add print_crashkernel_region_size() function |
| Message-ID | <qDD90-2iB-19@gated-at.bofh.it> |
| In reply to | #1286871 |
On 12/08/15 at 10:57pm, Daniel Kiper wrote:
> Provide just print_crashkernel_region_size() stub. This way
> we can properly build kexec utility on ppc64 arch even
> if the functionality is not available on it.
Ditto as ppc, you can read procfs file to get the values..
>
> Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
> ---
> kexec/arch/ppc64/crashdump-ppc64.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/kexec/arch/ppc64/crashdump-ppc64.c b/kexec/arch/ppc64/crashdump-ppc64.c
> index b3c8928..49af7a6 100644
> --- a/kexec/arch/ppc64/crashdump-ppc64.c
> +++ b/kexec/arch/ppc64/crashdump-ppc64.c
> @@ -527,6 +527,11 @@ int is_crashkernel_mem_reserved(void)
> return 1;
> }
>
> +void print_crashkernel_region_size(void)
> +{
> + printf("-1\n");
> +}
> +
> #if 0
> static int sort_regions(mem_rgns_t *rgn)
> {
> --
> 1.7.10.4
>
>
> _______________________________________________
> kexec mailing list
> kexec@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/kexec
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web