[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] xen: Append a newline character to panic() where missing
On 14/06/2023 10:06, Michal Orzel wrote:
On 14/06/2023 11:02, Julien Grall wrote:
On 14/06/2023 09:09, Michal Orzel wrote:
On 14/06/2023 10:04, Andrew Cooper wrote:
On 14/06/2023 8:30 am, Michal Orzel wrote:
Missing newline is inconsistent with the rest of the callers, since
panic() expects it.
Signed-off-by: Michal Orzel <michal.orzel@xxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
although...
---
xen/arch/arm/bootfdt.c | 2 +-
xen/arch/arm/domain_build.c | 6 +++---
xen/arch/x86/cpu/microcode/core.c | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/xen/arch/arm/bootfdt.c b/xen/arch/arm/bootfdt.c
index b6f92a174f5f..2673ad17a1e1 100644
--- a/xen/arch/arm/bootfdt.c
+++ b/xen/arch/arm/bootfdt.c
@@ -225,7 +225,7 @@ static int __init process_reserved_memory_node(const void
*fdt, int node,
size_cells, data);
if ( rc == -ENOSPC )
- panic("Max number of supported reserved-memory regions reached.");
+ panic("Max number of supported reserved-memory regions reached.\n");
Trailing punctuation like . or ! is useless. Most messages don't have
them, and it just takes up space in .rodata, the console ring, and time
on the UART.
I'd recommend dropping the ones you modify, and/or cleaning it up more
widely.
I will keep in mind to do that in global scope in the next patch.
We also have quite a lot of printk() with trailing punctuation.
This is quite a bit of churn and I am unconvinced this is necessary.
Also, if the others want such style, then this should be agreed on in
the CODING_STYLE first. Otherwise, I am afraid this is not something I
will enforce because I see limited value.
I then suggest to take this patch as is if you are also happy with it like
others.
The patch looks fine. I will commit it a bit later just to give a chance
to Bertrand/Stefano to object.
Cheers,
--
Julien Grall
|