From: Sourabh Jain <sourabhjain@linux.ibm.com>
To: Michael Ellerman <mpe@ellerman.id.au>, linuxppc-dev@ozlabs.org
Cc: mahesh@linux.vnet.ibm.com,
Mahesh Salgaonkar <mahesh@linux.ibm.com>,
hbathini@linux.ibm.com
Subject: Re: [PATCH] powerpc/fadump: reset dump area size variable if memblock reserve fails
Date: Mon, 3 Jul 2023 17:58:01 +0530 [thread overview]
Message-ID: <a199b87c-241e-1c64-7031-ad77d322822d@linux.ibm.com> (raw)
In-Reply-To: <875y71w7w2.fsf@mail.lhotse>
On 03/07/23 16:59, Michael Ellerman wrote:
> Sourabh Jain <sourabhjain@linux.ibm.com> writes:
>> Hello Michael,
>>
>> Do you have any feedback or comments regarding this patch?
>>
>> Thanks,
>> Sourabh
>>
>> On 08/06/23 14:52, Sourabh Jain wrote:
>>> If the memory reservation process (memblock_reserve) fails to reserve
>>> the memory, the reserve dump variable retains the dump area size.
>>> Consequently, the size of the dump area calculated for reservation
>>> is displayed in /sys/kernel/fadump/mem_reserved.
>>>
>>> To resolve this issue, the reserve dump area size variable is set to 0
>>> if the memblock_reserve fails to reserve memory.
>>>
>>> Fixes: 8255da95e545 ("powerpc/fadump: release all the memory above boot memory size")
>>> Signed-off-by: Sourabh Jain <sourabhjain@linux.ibm.com>
>>> Acked-by: Mahesh Salgaonkar <mahesh@linux.ibm.com>
>>> ---
>>> arch/powerpc/kernel/fadump.c | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff --git a/arch/powerpc/kernel/fadump.c b/arch/powerpc/kernel/fadump.c
>>> index ea0a073abd96..a8f2c3b2fa1e 100644
>>> --- a/arch/powerpc/kernel/fadump.c
>>> +++ b/arch/powerpc/kernel/fadump.c
>>> @@ -641,6 +641,7 @@ int __init fadump_reserve_mem(void)
>>> goto error_out;
>>>
>>> if (memblock_reserve(base, size)) {
>>> + fw_dump.reserve_dump_area_size = 0;
>>> pr_err("Failed to reserve memory!\n");
>>> goto error_out;
>>> }
> Shouldn't reserve_dump_area_size be set to zero at error_out, which
> already clears fadump_enabled?
>
> return ret;
> error_out:
> fw_dump.fadump_enabled = 0;
> return 0;
> }
>
>
> Otherwise the code immediately above will suffer from the same issue
> won't it?
>
> if (fw_dump.ops->fadump_setup_metadata &&
> (fw_dump.ops->fadump_setup_metadata(&fw_dump) < 0))
> goto error_out;
Agree, resetting fw_dump.reserve_dump_area_size below error_out label is
better.
Thanks for the review. I will send v2.
Sourabh Jain
prev parent reply other threads:[~2023-07-03 12:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-08 9:22 [PATCH] powerpc/fadump: reset dump area size variable if memblock reserve fails Sourabh Jain
2023-07-03 6:55 ` Sourabh Jain
2023-07-03 11:29 ` Michael Ellerman
2023-07-03 12:28 ` Sourabh Jain [this message]
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=a199b87c-241e-1c64-7031-ad77d322822d@linux.ibm.com \
--to=sourabhjain@linux.ibm.com \
--cc=hbathini@linux.ibm.com \
--cc=linuxppc-dev@ozlabs.org \
--cc=mahesh@linux.ibm.com \
--cc=mahesh@linux.vnet.ibm.com \
--cc=mpe@ellerman.id.au \
/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 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).