|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] xen: address MISRA C Rule 20.7 violation in generated hypercall
commit cab6de6a95bbded2435a9474a2ec1b730f209262
Author: Nicola Vetrini <nicola.vetrini@xxxxxxxxxxx>
AuthorDate: Wed Mar 27 09:11:03 2024 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Wed Mar 27 09:11:03 2024 +0100
xen: address MISRA C Rule 20.7 violation in generated hypercall
MISRA C Rule 20.7 states: "Expressions resulting from the expansion
of macro parameters shall be enclosed in parentheses". Therefore, some
macro definitions should gain additional parentheses 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@xxxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
---
xen/scripts/gen_hypercall.awk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/xen/scripts/gen_hypercall.awk b/xen/scripts/gen_hypercall.awk
index 9f7cfa298a..1a7e051fde 100644
--- a/xen/scripts/gen_hypercall.awk
+++ b/xen/scripts/gen_hypercall.awk
@@ -277,7 +277,7 @@ END {
if (call[i] == ca && call_prio[i] == p_list[pl]) {
fnd++;
if (fnd == 1)
- printf(" if ( num == __HYPERVISOR_%s )
\\\n", fn[call_fn[i]]);
+ printf(" if ( (num) == __HYPERVISOR_%s
) \\\n", fn[call_fn[i]]);
else
printf(" else \\\n");
do_call(call_fn[i], call_p[i]);
@@ -290,7 +290,7 @@ END {
} else {
for (i = 1; i <= nc; i++)
if (call[i] == ca && call_prio[i] == p_list[pl]) {
- printf("if ( likely(num == __HYPERVISOR_%s) ) \\\n",
fn[call_fn[i]]);
+ printf("if ( likely((num) == __HYPERVISOR_%s) ) \\\n",
fn[call_fn[i]]);
do_call(call_fn[i], call_p[i]);
}
}
--
generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |