On 2024/1/19 18:40, Markus Elfring wrote:
kasprintf() returns a pointer to dynamically allocated memory
which can be NULL upon failure. Ensure the allocation was successful
by checking the pointer validity.
…
---
Changes in v3:
- Remove rc initialization
- Simply error paths by adding a new label 'fail_mem'
…
I became curious if you would like to simplify further source code places.
This function hasn't changed in years, so it's OK for now.
+++ b/arch/x86/xen/smp.c
@@ -65,6 +65,8 @@ int xen_smp_intr_init(unsigned int cpu)
char *resched_name, *callfunc_name, *debug_name;
resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
+ if (!resched_name)
+ goto fail_mem;
Would you like to add a blank line after such a statement?
Sure, I could do it in next patch.
per_cpu(xen_resched_irq, cpu).name = resched_name;
…
Please compare with your subsequent suggestion.
I’ve seend a reply.
…
@@ -101,6 +108,9 @@ int xen_smp_intr_init(unsigned int cpu)
}
callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
+ if (!callfunc_name)
+ goto fail_mem;
+
per_cpu(xen_callfuncsingle_irq, cpu).name = callfunc_name;
…
Regards,
Markus
--
Thanks,
Kunwu