[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [XEN PATCH] IOMMU: address violations of MISRA C:2012 Rules 8.2 and 8.3
On 29.07.2023 01:29, Stefano Stabellini wrote: > On Fri, 28 Jul 2023, Federico Serafini wrote: >> Give a name to unnamed parameters to address violations of >> MISRA C:2012 Rule 8.2 ("Function types shall be in prototype form with >> named parameters"). >> Keep consistency between parameter names and types used in function >> declarations and the ones used in the corresponding function >> definitions, thus addressing violations of MISRA C:2012 Rule 8.3 >> ("All declarations of an object or function shall use the same names >> and type qualifiers"). >> >> No functional changes. >> >> Signed-off-by: Federico Serafini <federico.serafini@xxxxxxxxxxx> > > Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> >> --- a/xen/drivers/passthrough/iommu.c >> +++ b/xen/drivers/passthrough/iommu.c >> @@ -25,10 +25,10 @@ >> unsigned int __read_mostly iommu_dev_iotlb_timeout = 1000; >> integer_param("iommu_dev_iotlb_timeout", iommu_dev_iotlb_timeout); >> >> -bool_t __initdata iommu_enable = 1; >> -bool_t __read_mostly iommu_enabled; >> -bool_t __read_mostly force_iommu; >> -bool_t __read_mostly iommu_verbose; >> +bool __initdata iommu_enable = 1; >> +bool __read_mostly iommu_enabled; >> +bool __read_mostly force_iommu; >> +bool __read_mostly iommu_verbose; >> static bool_t __read_mostly iommu_crash_disable; >> >> #define IOMMU_quarantine_none 0 /* aka false */ >> @@ -57,7 +57,7 @@ int8_t __hwdom_initdata iommu_hwdom_reserved = -1; >> bool __read_mostly iommu_hap_pt_share = true; >> #endif >> >> -bool_t __read_mostly iommu_debug; >> +bool __read_mostly iommu_debug; Lots of data objects are fiddled with here, so I guess the description would better not talk of only functions. I guess adjusting for that could be done while committing ... Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |