]> xenbits.xensource.com Git - people/aperard/xen-unstable.git/commitdiff
xen/page_alloc: address violations of MISRA C Rule 20.7
authorNicola Vetrini <nicola.vetrini@bugseng.com>
Wed, 27 Mar 2024 08:12:06 +0000 (09:12 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 27 Mar 2024 08:12:06 +0000 (09:12 +0100)
MISRA C Rule 20.7 states: "Expressions resulting from the expansion
of macro parameters shall be enclosed in parentheses". Therefore, some
macro definitions should either gain additional parentheses or have
their expressions simplified to ensure that all current and future users
will be safe with respect to expansions that can possibly alter the
semantics of the passed-in macro parameter.

No functional change.

Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
xen/common/page_alloc.c

index 28c510d6669b08bad4ff5a11f05bdf020d55d966..c94834d71b9a0746f96e5540f72a7c0f13f166b8 100644 (file)
 #include <asm/paging.h>
 #else
 #define p2m_pod_offline_or_broken_hit(pg) 0
-#define p2m_pod_offline_or_broken_replace(pg) BUG_ON(pg != NULL)
+#define p2m_pod_offline_or_broken_replace(pg) BUG_ON(pg)
 #endif
 
 #ifndef PGC_static