From: Federico Serafini <federico.serafini@bugseng.com>
MISRA C Directive 4.10 states that:
"Precautions shall be taken in order to prevent the contents of a
header file being included more than once".
Add inclusion guards where missing to address violations of the
guideline.
Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
---
 xen/arch/arm/efi/efi-boot.h        | 6 ++++++
 xen/arch/arm/include/asm/efibind.h | 5 +++++
 2 files changed, 11 insertions(+)
diff --git a/xen/arch/arm/efi/efi-boot.h b/xen/arch/arm/efi/efi-boot.h
index dcad46ca72..d2a09ad3a1 100644
--- a/xen/arch/arm/efi/efi-boot.h
+++ b/xen/arch/arm/efi/efi-boot.h
@@ -3,6 +3,10 @@
  * is intended to be included by common/efi/boot.c _only_, and
  * therefore can define arch specific global variables.
  */
+
+#ifndef ARM_EFI_BOOT_H
+#define ARM_EFI_BOOT_H
+
 #include <xen/device_tree.h>
 #include <xen/libfdt/libfdt.h>
 #include <asm/setup.h>
@@ -1003,6 +1007,8 @@ static void __init efi_arch_flush_dcache_area(const void *vaddr, UINTN size)
     __flush_dcache_area(vaddr, size);
 }
 
+#endif /* ARM_EFI_BOOT_H */
+
 /*
  * Local variables:
  * mode: C
diff --git a/xen/arch/arm/include/asm/efibind.h b/xen/arch/arm/include/asm/efibind.h
index 09dca7a8c9..92b8bad0bb 100644
--- a/xen/arch/arm/include/asm/efibind.h
+++ b/xen/arch/arm/include/asm/efibind.h
@@ -1,2 +1,7 @@
+#ifndef ARM_EFIBIND_H
+#define ARM_EFIBIND_H
+
 #include <xen/types.h>
 #include <asm/arm64/efibind.h>
+
+#endif /* ARM_EFIBIND_H */
-- 
2.25.1Hi Stefano, On 17/05/2025 00:21, Stefano Stabellini wrote: > From: Federico Serafini <federico.serafini@bugseng.com> > > MISRA C Directive 4.10 states that: > "Precautions shall be taken in order to prevent the contents of a > header file being included more than once". > > Add inclusion guards where missing to address violations of the > guideline. > > Signed-off-by: Federico Serafini <federico.serafini@bugseng.com> > Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com> With one remark below: Acked-by: Julien Grall <jgrall@amazon.com> > --- > xen/arch/arm/efi/efi-boot.h | 6 ++++++ > xen/arch/arm/include/asm/efibind.h | 5 +++++ > 2 files changed, 11 insertions(+) > > diff --git a/xen/arch/arm/efi/efi-boot.h b/xen/arch/arm/efi/efi-boot.h > index dcad46ca72..d2a09ad3a1 100644 > --- a/xen/arch/arm/efi/efi-boot.h > +++ b/xen/arch/arm/efi/efi-boot.h I always found weird that this file is treated as a header when in fact this is just a disguised source file. So in some way... > @@ -3,6 +3,10 @@ > * is intended to be included by common/efi/boot.c _only_, and > * therefore can define arch specific global variables. > */ > + > +#ifndef ARM_EFI_BOOT_H > +#define ARM_EFI_BOOT_H ... without the header guard, we could catch two inclusions of efi-boot.h. I would consider to use: #ifdef ARM_EFI_BOOT_H # error ... #else # define ... #endif ... Cheers, -- Julien Grall
On 17/05/2025 12:21 am, Stefano Stabellini wrote: > From: Federico Serafini <federico.serafini@bugseng.com> > > MISRA C Directive 4.10 states that: > "Precautions shall be taken in order to prevent the contents of a > header file being included more than once". > > Add inclusion guards where missing to address violations of the > guideline. > > Signed-off-by: Federico Serafini <federico.serafini@bugseng.com> > Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
© 2016 - 2025 Red Hat, Inc.