The xen sources contain violations of MISRA C:2012 Rule 7.3 whose headline
states:
"The lowercase character 'l' shall not be used in a literal suffix".
Use the "L" suffix instead of the "l" suffix, to avoid potential ambiguity.
If the "u" suffix is used near "L", use the "U" suffix instead, for consistency.
The changes in this patch are mechanical.
Signed-off-by: Gianluca Luparini <gianluca.luparini@bugseng.com>
Signed-off-by: Simone Ballarin <simone.ballarin@bugseng.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Acked-by: Tamas K Lengyel <tamas@tklengyel.com>
case XENMEM_access_op_set_access:
rc = -EINVAL;
- if ( (mao.pfn != ~0ull) &&
+ if ( (mao.pfn != ~0ULL) &&
(mao.nr < start_iter ||
((mao.pfn + mao.nr - 1) < mao.pfn) ||
((mao.pfn + mao.nr - 1) > domain_get_maximum_gpfn(d))) )
break;
rc = -EINVAL;
- if ( (mao.pfn > domain_get_maximum_gpfn(d)) && mao.pfn != ~0ull )
+ if ( (mao.pfn > domain_get_maximum_gpfn(d)) && mao.pfn != ~0ULL )
break;
rc = p2m_get_mem_access(d, _gfn(mao.pfn), &access, 0);