[XEN PATCH][for-4.19 v3 8/8] docs/misra: exclude three more files

Nicola Vetrini posted 8 patches 2 years, 3 months ago
There is a newer version of this series
[XEN PATCH][for-4.19 v3 8/8] docs/misra: exclude three more files
Posted by Nicola Vetrini 2 years, 3 months ago
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.
---
 docs/misra/exclude-list.json | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/docs/misra/exclude-list.json b/docs/misra/exclude-list.json
index 575ed22a7f67..b2b4b9253615 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/acexep.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"
-- 
2.34.1
Re: [XEN PATCH][for-4.19 v3 8/8] docs/misra: exclude three more files
Posted by Jan Beulich 2 years, 3 months ago
On 19.10.2023 15:40, 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.
> ---
>  docs/misra/exclude-list.json | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/docs/misra/exclude-list.json b/docs/misra/exclude-list.json
> index 575ed22a7f67..b2b4b9253615 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/acexep.h",

Typo (include/acpi/acexcep.h)?

Jan
Re: [XEN PATCH][for-4.19 v3 8/8] docs/misra: exclude three more files
Posted by Nicola Vetrini 2 years, 3 months ago
On 20/10/2023 08:04, Jan Beulich wrote:
> On 19.10.2023 15:40, 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.
>> ---
>>  docs/misra/exclude-list.json | 12 ++++++++++++
>>  1 file changed, 12 insertions(+)
>> 
>> diff --git a/docs/misra/exclude-list.json 
>> b/docs/misra/exclude-list.json
>> index 575ed22a7f67..b2b4b9253615 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/acexep.h",
> 
> Typo (include/acpi/acexcep.h)?
> 
> Jan

Indeed, thanks. This is trivial enough to be done on commit, I suppose.

-- 
Nicola Vetrini, BSc
Software Engineer, BUGSENG srl (https://bugseng.com)
Re: [XEN PATCH][for-4.19 v3 8/8] docs/misra: exclude three more files
Posted by Stefano Stabellini 2 years, 3 months ago
On Thu, 19 Oct 2023, 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>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>