linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code.
@ 2008-12-16  4:34 Tony Breeds
  2008-12-16  5:12 ` Nathan Lynch
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Tony Breeds @ 2008-12-16  4:34 UTC (permalink / raw)
  To: Paul Mackerras, Benjamin Herrenschmidt, Manish Ahuja; +Cc: LinuxPPC-dev

ibm_configure_kernel_dump, is passed as the token to rtas_call() but I
cannot see where it is initialised.  Set it to something sane?

Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
---
 arch/powerpc/platforms/pseries/phyp_dump.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/platforms/pseries/phyp_dump.c b/arch/powerpc/platforms/pseries/phyp_dump.c
index 16e659a..6cf35cd 100644
--- a/arch/powerpc/platforms/pseries/phyp_dump.c
+++ b/arch/powerpc/platforms/pseries/phyp_dump.c
@@ -414,6 +414,8 @@ static int __init phyp_dump_setup(void)
 		of_node_put(rtas);
 	}
 
+	ibm_configure_kernel_dump = rtas_token("ibm,configure-kernel-dump");
+
 	print_dump_header(dump_header);
 	dump_area_length = init_dump_header(&phdr);
 	/* align down */
-- 
1.6.0.4


Yours Tony

  linux.conf.au    http://www.marchsouth.org/
  Jan 19 - 24 2009 The Australian Linux Technical Conference!

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code.
  2008-12-16  4:34 [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code Tony Breeds
@ 2008-12-16  5:12 ` Nathan Lynch
  2008-12-16 18:38 ` Manish Ahuja
  2008-12-17 12:47 ` Josh Boyer
  2 siblings, 0 replies; 4+ messages in thread
From: Nathan Lynch @ 2008-12-16  5:12 UTC (permalink / raw)
  To: Tony Breeds; +Cc: Manish Ahuja, Paul Mackerras, LinuxPPC-dev

Tony Breeds wrote:
> ibm_configure_kernel_dump, is passed as the token to rtas_call() but I
> cannot see where it is initialised.  Set it to something sane?

Yes, please.

Acked-by: Nathan Lynch <ntl@pobox.com>

Would be good to know whether the dump area registration and dump
retrieval are working with your changes.  Doesn't look like they could
have worked at all with this bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code.
  2008-12-16  4:34 [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code Tony Breeds
  2008-12-16  5:12 ` Nathan Lynch
@ 2008-12-16 18:38 ` Manish Ahuja
  2008-12-17 12:47 ` Josh Boyer
  2 siblings, 0 replies; 4+ messages in thread
From: Manish Ahuja @ 2008-12-16 18:38 UTC (permalink / raw)
  To: Paul Mackerras, Benjamin Herrenschmidt, Manish Ahuja, LinuxPPC-dev

Yes,

That is required. It is in the patches that I sent to Ben, Paul & Brad.

I just waiting to post it with other patches.

Acked-by: Manish Ahuja <mahujam@gmail.com>

Tony Breeds wrote:
> ibm_configure_kernel_dump, is passed as the token to rtas_call() but I
> cannot see where it is initialised.  Set it to something sane?
> 
> Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
> ---
>  arch/powerpc/platforms/pseries/phyp_dump.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/powerpc/platforms/pseries/phyp_dump.c b/arch/powerpc/platforms/pseries/phyp_dump.c
> index 16e659a..6cf35cd 100644
> --- a/arch/powerpc/platforms/pseries/phyp_dump.c
> +++ b/arch/powerpc/platforms/pseries/phyp_dump.c
> @@ -414,6 +414,8 @@ static int __init phyp_dump_setup(void)
>  		of_node_put(rtas);
>  	}
>  
> +	ibm_configure_kernel_dump = rtas_token("ibm,configure-kernel-dump");
> +
>  	print_dump_header(dump_header);
>  	dump_area_length = init_dump_header(&phdr);
>  	/* align down */


-- 

--
Manish Ahuja
Linux RAS Engineer.
IBM Linux Technology Center
mahuja@us.ibm.com
512-838-1928, t/l 678-1928.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code.
  2008-12-16  4:34 [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code Tony Breeds
  2008-12-16  5:12 ` Nathan Lynch
  2008-12-16 18:38 ` Manish Ahuja
@ 2008-12-17 12:47 ` Josh Boyer
  2 siblings, 0 replies; 4+ messages in thread
From: Josh Boyer @ 2008-12-17 12:47 UTC (permalink / raw)
  To: Paul Mackerras, Benjamin Herrenschmidt, Manish Ahuja, LinuxPPC-dev

On Tue, Dec 16, 2008 at 03:34:43PM +1100, Tony Breeds wrote:
>ibm_configure_kernel_dump, is passed as the token to rtas_call() but I
>cannot see where it is initialised.  Set it to something sane?
>
>Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>

Seems sane as a fix, just a note that whoever needs to apply this
patch should fix the Subject line to say "rtas" and not "rats".

Though rats is applicable at times :)

josh

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-12-17 12:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-16  4:34 [PATCH] [RFC] Pass a valid token to rats_call() in phyp-dump code Tony Breeds
2008-12-16  5:12 ` Nathan Lynch
2008-12-16 18:38 ` Manish Ahuja
2008-12-17 12:47 ` Josh Boyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).