[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [XEN PATCH v2 12/13] xen/x86: fix violations of MISRA C:2012 Rule 7.2
On Wed, 5 Jul 2023, Simone Ballarin wrote: > From: Gianluca Luparini <gianluca.luparini@xxxxxxxxxxx> > > The xen sources contains violations of MISRA C:2012 Rule 7.2 whose > headline states: > "A 'u' or 'U' suffix shall be applied to all integer constants > that are represented in an unsigned type". > > Add the 'U' suffix to integers literals with unsigned type and also to other > literals used in the same contexts or near violations, when their positive > nature is immediately clear. The latter changes are done for the sake of > uniformity. > > Signed-off-by: Simone Ballarin <simone.ballarin@xxxxxxxxxxx> > Signed-off-by: Gianluca Luparini <gianluca.luparini@xxxxxxxxxxx> [...] > diff --git a/xen/arch/x86/extable.c b/xen/arch/x86/extable.c > index c3771c2e39..6951a433e8 100644 > --- a/xen/arch/x86/extable.c > +++ b/xen/arch/x86/extable.c > @@ -141,7 +141,7 @@ static int __init cf_check stub_selftest(void) > .rax = 0x0123456789abcdef, > .res.fields.trapnr = X86_EXC_GP }, > { .opc = { endbr64, 0x02, 0x04, 0x04, 0xc3 }, /* add (%rsp,%rax),%al > */ > - .rax = 0xfedcba9876543210, > + .rax = 0xfedcba9876543210U, In my opinion 64-bit values should be either UL or ULL. This one should be UL ? Everything else looks fine to me
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |