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@bugseng.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
/* we would like to use elf->log_callback but we can't because
* there is no vprintk in Xen */
#define elf_msg(elf, fmt, args ... ) \
- if (elf->verbose) printk(fmt, ## args )
+ if ((elf)->verbose) printk(fmt, ## args )
#define elf_err(elf, fmt, args ... ) \
printk(fmt, ## args )
#define elf_store_val(elf, type, ptr, val) \
({ \
typeof(type) elf_store__val = (val); \
- elf_ptrval elf_store__targ = ptr; \
+ elf_ptrval elf_store__targ = (ptr); \
if (elf_access_ok((elf), elf_store__targ, \
sizeof(elf_store__val))) { \
elf_memcpy_unchecked((void*)elf_store__targ, &elf_store__val, \