Re: [PATCH kernel] powerpc/prom_init: Pass the "os-term" message to hypervisor

2020-03-26 Thread Michael Ellerman
On Thu, 2020-03-12 at 07:44:04 UTC, Alexey Kardashevskiy wrote: > The "os-term" RTAS calls has one argument with a message address of > OS termination cause. rtas_os_term() already passes it but the recently > added prom_init's version of that missed it; it also does not fill args > correctly. > >

Re: [PATCH kernel] powerpc/prom_init: Pass the "os-term" message to hypervisor

2020-03-13 Thread Michael Ellerman
Alexey Kardashevskiy writes: > The "os-term" RTAS calls has one argument with a message address of > OS termination cause. rtas_os_term() already passes it but the recently > added prom_init's version of that missed it; it also does not fill args > correctly. > > This passes the message address an

[PATCH kernel] powerpc/prom_init: Pass the "os-term" message to hypervisor

2020-03-12 Thread Alexey Kardashevskiy
The "os-term" RTAS calls has one argument with a message address of OS termination cause. rtas_os_term() already passes it but the recently added prom_init's version of that missed it; it also does not fill args correctly. This passes the message address and initializes the number of arguments. S