* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
@ 2008-01-22 18:46 Manish Ahuja
0 siblings, 0 replies; 10+ messages in thread
From: Manish Ahuja @ 2008-01-22 18:46 UTC (permalink / raw)
To: ppc-dev, paulus; +Cc: mahuja, linasvepstas, lkessler, Michael Strosaker
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is :-) . Yes, its supposed
to be an improvement over kdump.
A list of open issues / todo list is included in the documentation.
It also appears that the not-yet-released firmware versions this was tested
on are still, ahem, incomplete; this work is also pending.
I have included most of the changes requested. Although, I did find
one or two, fixed in a later patch file rather than the first location
they appeared at.
-- Manish & Linas.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
@ 2008-03-21 22:42 Manish Ahuja
0 siblings, 0 replies; 10+ messages in thread
From: Manish Ahuja @ 2008-03-21 22:42 UTC (permalink / raw)
To: ppc, paulus, michael, Linas Vepstas
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is.
A list of open issues / todo list is included in the documentation.
It also appears that the not-yet-released firmware versions this was tested
on are still,incomplete; this work is also pending.
The following is a list of changes from previous version:
- Deleted ifdef CONFIG_PHYP_DUMP from early_init_dt_scan_phyp_dump function.
- Changed reserve_crashed_mem() to phyp_dump_reserve_mem() as suggested.
- Added #ifdef CONFIG_PHYP_DUMP around of_scan_flat_dt call, removed empty function
from header file.
- Changed phyp_dump_global to phyp_dump_vars.
- Changed style issues at several places.
Manish & Linas.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
@ 2008-02-18 4:53 Manish Ahuja
2008-02-22 0:53 ` Michael Ellerman
0 siblings, 1 reply; 10+ messages in thread
From: Manish Ahuja @ 2008-02-18 4:53 UTC (permalink / raw)
To: ppc-dev, paulus, Linas Vepstas
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is :-) . Yes, its supposed
to be an improvement over kdump.
A list of open issues / todo list is included in the documentation.
It also appears that the not-yet-released firmware versions this was tested
on are still, ahem, incomplete; this work is also pending.
I have included most of the changes requested. Although, I did find
one or two, fixed in a later patch file rather than the first location
they appeared at.
Also it now does not block any memory on machines other than power6 boxes
which have the requisite firmware. This is from a power5 box.
from jal-lp6 a power5 machine.
.........
Phyp-dump not supported on this hardware
Using pSeries machine description
console [udbg-1] enabled
.......
I think I incorporated everyones comments so far.
-- Manish & Linas.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
2008-02-18 4:53 Manish Ahuja
@ 2008-02-22 0:53 ` Michael Ellerman
2008-02-28 23:57 ` Manish Ahuja
0 siblings, 1 reply; 10+ messages in thread
From: Michael Ellerman @ 2008-02-22 0:53 UTC (permalink / raw)
To: Manish Ahuja; +Cc: ppc-dev, Linas Vepstas, paulus
[-- Attachment #1: Type: text/plain, Size: 1244 bytes --]
On Sun, 2008-02-17 at 22:53 -0600, Manish Ahuja wrote:
> The following series of patches implement a basic framework
> for hypervisor-assisted dump. The very first patch provides
> documentation explaining what this is :-) . Yes, its supposed
> to be an improvement over kdump.
>
> A list of open issues / todo list is included in the documentation.
> It also appears that the not-yet-released firmware versions this was tested
> on are still, ahem, incomplete; this work is also pending.
>
> I have included most of the changes requested. Although, I did find
> one or two, fixed in a later patch file rather than the first location
> they appeared at.
This series still doesn't build on !CONFIG_RTAS configs:
http://kisskb.ellerman.id.au/kisskb/head/629/
This solution is to move early_init_dt_scan_phyp_dump() into
arch/powerpc/platforms/pseries/phyp_dump.c and provide a dummy
implementation in asm-powerpc/phyp_dump.c for the !CONFIG_PHYP_DUMP
case.
cheers
--
Michael Ellerman
OzLabs, IBM Australia Development Lab
wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)
We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
2008-02-22 0:53 ` Michael Ellerman
@ 2008-02-28 23:57 ` Manish Ahuja
2008-02-29 2:20 ` Michael Ellerman
2008-03-03 23:37 ` Joel Schopp
0 siblings, 2 replies; 10+ messages in thread
From: Manish Ahuja @ 2008-02-28 23:57 UTC (permalink / raw)
To: michael; +Cc: ppc-dev, Linas Vepstas, paulus
Changes from previous version:
The only changes are in patch 2.
moved early_init_dt_scan_phyp_dump from rtas.c to phyp_dump.c
Added dummy function in phyp_dump.h
Patch 3 required repatching due to changes to patch 2.
Resubmitting all patches to avoid confusion.
Thanks,
Manish
Michael Ellerman wrote:
> On Sun, 2008-02-17 at 22:53 -0600, Manish Ahuja wrote:
>> The following series of patches implement a basic framework
>> for hypervisor-assisted dump. The very first patch provides
>> documentation explaining what this is :-) . Yes, its supposed
>> to be an improvement over kdump.
>>
>> A list of open issues / todo list is included in the documentation.
>> It also appears that the not-yet-released firmware versions this was tested
>> on are still, ahem, incomplete; this work is also pending.
>>
>> I have included most of the changes requested. Although, I did find
>> one or two, fixed in a later patch file rather than the first location
>> they appeared at.
>
> This series still doesn't build on !CONFIG_RTAS configs:
> http://kisskb.ellerman.id.au/kisskb/head/629/
>
> This solution is to move early_init_dt_scan_phyp_dump() into
> arch/powerpc/platforms/pseries/phyp_dump.c and provide a dummy
> implementation in asm-powerpc/phyp_dump.c for the !CONFIG_PHYP_DUMP
> case.
>
> cheers
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
2008-02-28 23:57 ` Manish Ahuja
@ 2008-02-29 2:20 ` Michael Ellerman
2008-03-03 23:37 ` Joel Schopp
1 sibling, 0 replies; 10+ messages in thread
From: Michael Ellerman @ 2008-02-29 2:20 UTC (permalink / raw)
To: Manish Ahuja; +Cc: ppc-dev, Linas Vepstas, paulus
[-- Attachment #1: Type: text/plain, Size: 589 bytes --]
On Thu, 2008-02-28 at 17:57 -0600, Manish Ahuja wrote:
> Changes from previous version:
>
> The only changes are in patch 2.
> moved early_init_dt_scan_phyp_dump from rtas.c to phyp_dump.c
> Added dummy function in phyp_dump.h
This fixes the build failures I was seeing!
http://kisskb.ellerman.id.au/kisskb/head/664/
cheers
--
Michael Ellerman
OzLabs, IBM Australia Development Lab
wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)
We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
2008-02-28 23:57 ` Manish Ahuja
2008-02-29 2:20 ` Michael Ellerman
@ 2008-03-03 23:37 ` Joel Schopp
1 sibling, 0 replies; 10+ messages in thread
From: Joel Schopp @ 2008-03-03 23:37 UTC (permalink / raw)
To: Manish Ahuja; +Cc: ppc-dev, Linas Vepstas, paulus
This looks like it is to a stable usable point now. In my opinion it is
ready to be merged into the next tree for 2.6.26.
Reviewed-by: Joel Schopp <jschopp@austin.ibm.com>
Manish Ahuja wrote:
> Changes from previous version:
>
> The only changes are in patch 2.
> moved early_init_dt_scan_phyp_dump from rtas.c to phyp_dump.c
> Added dummy function in phyp_dump.h
>
> Patch 3 required repatching due to changes to patch 2.
> Resubmitting all patches to avoid confusion.
>
> Thanks,
> Manish
>
>
> Michael Ellerman wrote:
>
>> On Sun, 2008-02-17 at 22:53 -0600, Manish Ahuja wrote:
>>
>>> The following series of patches implement a basic framework
>>> for hypervisor-assisted dump. The very first patch provides
>>> documentation explaining what this is :-) . Yes, its supposed
>>> to be an improvement over kdump.
>>>
>>> A list of open issues / todo list is included in the documentation.
>>> It also appears that the not-yet-released firmware versions this was tested
>>> on are still, ahem, incomplete; this work is also pending.
>>>
>>> I have included most of the changes requested. Although, I did find
>>> one or two, fixed in a later patch file rather than the first location
>>> they appeared at.
>>>
>> This series still doesn't build on !CONFIG_RTAS configs:
>> http://kisskb.ellerman.id.au/kisskb/head/629/
>>
>> This solution is to move early_init_dt_scan_phyp_dump() into
>> arch/powerpc/platforms/pseries/phyp_dump.c and provide a dummy
>> implementation in asm-powerpc/phyp_dump.c for the !CONFIG_PHYP_DUMP
>> case.
>>
>> cheers
>>
>>
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
@ 2008-01-22 19:12 Manish Ahuja
0 siblings, 0 replies; 10+ messages in thread
From: Manish Ahuja @ 2008-01-22 19:12 UTC (permalink / raw)
To: ppc-dev, paulus, linasvepstas, Michael Strosaker, Larry Kessler
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is :-) . Yes, its supposed
to be an improvement over kdump.
A list of open issues / todo list is included in the documentation.
It also appears that the not-yet-released firmware versions this was tested
on are still, ahem, incomplete; this work is also pending.
I have included most of the changes requested. Although, I did find
one or two, fixed in a later patch file rather than the first location
they appeared at.
-- Manish & Linas.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
@ 2008-01-07 23:45 Manish Ahuja
2008-02-12 6:31 ` Manish Ahuja
0 siblings, 1 reply; 10+ messages in thread
From: Manish Ahuja @ 2008-01-07 23:45 UTC (permalink / raw)
To: linuxppc-dev; +Cc: mahuja, linasvepstas, lkessler, strosake
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is :-) . Yes, its supposed
to be an improvement over kdump.
The patches mostly work; a list of open issues / todo list
is included in the documentation. It also appears that
the not-yet-released firmware versions this was tested
on are still, ahem, incomplete; this work is also pending.
-- Linas & Manish
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump
2008-01-07 23:45 Manish Ahuja
@ 2008-02-12 6:31 ` Manish Ahuja
0 siblings, 0 replies; 10+ messages in thread
From: Manish Ahuja @ 2008-02-12 6:31 UTC (permalink / raw)
To: linuxppc-dev; +Cc: mahuja, linasvepstas, lkessler, strosake
The following series of patches implement a basic framework
for hypervisor-assisted dump. The very first patch provides
documentation explaining what this is :-). Yes, its supposed
to be an improvement over kdump.
A list of open issues / todo list is included in the documentation.
It also appears that the not-yet-released firmware versions this was tested
on are still, ahem, incomplete; this work is also pending.
I have included most of the changes requested. Although, I did find
one or two, fixed in a later patch file rather than the first location
they appeared at.
Also it now does not block any memory on machines other than power6 boxes
which have the requisite firmware. This is from a power5 box.
from jal-lp6 a power5 machine.
.........
Phyp-dump not supported on this hardware
Using pSeries machine description
console [udbg-1] enabled
.......
Since I changed a few more things, I am reposting all the patches.
-- Manish & Linas.
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-03-21 22:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-22 18:46 [PATCH 0/8] pseries: phyp dump: hypervisor-assisted dump Manish Ahuja
-- strict thread matches above, loose matches on Subject: below --
2008-03-21 22:42 Manish Ahuja
2008-02-18 4:53 Manish Ahuja
2008-02-22 0:53 ` Michael Ellerman
2008-02-28 23:57 ` Manish Ahuja
2008-02-29 2:20 ` Michael Ellerman
2008-03-03 23:37 ` Joel Schopp
2008-01-22 19:12 Manish Ahuja
2008-01-07 23:45 Manish Ahuja
2008-02-12 6:31 ` Manish Ahuja
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).