Message ID | 741b3eee4c25296bc114cfcc0f38d7e7c2bef667.1698053876.git.nicola.vetrini@bugseng.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Fix or deviate various instances of missing declarations | expand |
On 23.10.2023 11:56, Nicola Vetrini wrote: > These files should not conform to MISRA guidelines at the moment, > therefore they are added to the exclusion list. > > Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> > --- > These exclusions are automatically picked up by ECLAIR's automation > to hide reports originating from these files. > > Changes in v4: > - Fixed typo While there was an adjustment here, I don't think it invalidated Stefano's R-b? Jan
On 23/10/2023 12:23, Jan Beulich wrote: > On 23.10.2023 11:56, Nicola Vetrini wrote: >> These files should not conform to MISRA guidelines at the moment, >> therefore they are added to the exclusion list. >> >> Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> >> --- >> These exclusions are automatically picked up by ECLAIR's automation >> to hide reports originating from these files. >> >> Changes in v4: >> - Fixed typo > > While there was an adjustment here, I don't think it invalidated > Stefano's R-b? > > Jan Yes
diff --git a/docs/misra/exclude-list.json b/docs/misra/exclude-list.json index 575ed22a7f67..b858a0baa106 100644 --- a/docs/misra/exclude-list.json +++ b/docs/misra/exclude-list.json @@ -145,6 +145,10 @@ "rel_path": "common/zstd/*", "comment": "Imported from Linux, ignore for now" }, + { + "rel_path": "common/symbols-dummy.c", + "comment": "The resulting code is not included in the final Xen binary, ignore for now" + }, { "rel_path": "crypto/*", "comment": "Origin is external and documented in crypto/README.source" @@ -189,6 +193,14 @@ "rel_path": "include/acpi/acpixf.h", "comment": "Imported from Linux, ignore for now" }, + { + "rel_path": "include/acpi/acexcep.h", + "comment": "Imported from Linux, ignore for now" + }, + { + "rel_path": "include/acpi/acglobal.h", + "comment": "Imported from Linux, ignore for now" + }, { "rel_path": "include/xen/acpi.h", "comment": "Imported from Linux, ignore for now"
These files should not conform to MISRA guidelines at the moment, therefore they are added to the exclusion list. Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> --- These exclusions are automatically picked up by ECLAIR's automation to hide reports originating from these files. Changes in v4: - Fixed typo --- docs/misra/exclude-list.json | 12 ++++++++++++ 1 file changed, 12 insertions(+)