Re: [XEN PATCH v2 1/2] xen/sched: address violations of MISRA C:2012 Rule 16.3

2024-04-04 Thread George Dunlap
On Thu, Apr 4, 2024 at 8:49 AM Federico Serafini wrote: > > Add break statement to address a violation of MISRA C:2012 Rule 16.3 > ("An unconditional `break' statement shall terminate every > switch-clause"). > Replace deprecated comment /* FALLTHRU */ with pseudo-keyword > fallthrough to meet the

Re: [XEN PATCH v2 1/2] xen/sched: address violations of MISRA C:2012 Rule 16.3

2024-04-04 Thread Jan Beulich
On 04.04.2024 09:49, Federico Serafini wrote: > Add break statement to address a violation of MISRA C:2012 Rule 16.3 > ("An unconditional `break' statement shall terminate every > switch-clause"). > Replace deprecated comment /* FALLTHRU */ with pseudo-keyword > fallthrough to meet the requirements

[XEN PATCH v2 1/2] xen/sched: address violations of MISRA C:2012 Rule 16.3

2024-04-04 Thread Federico Serafini
Add break statement to address a violation of MISRA C:2012 Rule 16.3 ("An unconditional `break' statement shall terminate every switch-clause"). Replace deprecated comment /* FALLTHRU */ with pseudo-keyword fallthrough to meet the requirements to deviate the rule. No functional change. Signed-off