[XEN PATCH 10/11] xen/perfc: address a violation of MISRA C:2012 Rule 8.2

Federico Serafini posted 11 patches 2 years, 2 months ago
There is a newer version of this series
[XEN PATCH 10/11] xen/perfc: address a violation of MISRA C:2012 Rule 8.2
Posted by Federico Serafini 2 years, 2 months ago
Add missing parameter name. No functional change.

Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>
---
 xen/include/xen/perfc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/include/xen/perfc.h b/xen/include/xen/perfc.h
index 96022c0748..f9009dc388 100644
--- a/xen/include/xen/perfc.h
+++ b/xen/include/xen/perfc.h
@@ -94,7 +94,7 @@ DECLARE_PER_CPU(perfc_t[NUM_PERFCOUNTERS], perfcounters);
 #endif
 
 struct xen_sysctl_perfc_op;
-int perfc_control(struct xen_sysctl_perfc_op *);
+int perfc_control(struct xen_sysctl_perfc_op *pc);
 
 extern void cf_check perfc_printall(unsigned char key);
 extern void cf_check perfc_reset(unsigned char key);
-- 
2.34.1
Re: [XEN PATCH 10/11] xen/perfc: address a violation of MISRA C:2012 Rule 8.2
Posted by Stefano Stabellini 2 years, 2 months ago
On Fri, 24 Nov 2023, Federico Serafini wrote:
> Add missing parameter name. No functional change.
> 
> Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Re: [XEN PATCH 10/11] xen/perfc: address a violation of MISRA C:2012 Rule 8.2
Posted by Jan Beulich 2 years, 2 months ago
On 24.11.2023 15:03, Federico Serafini wrote:
> Add missing parameter name. No functional change.
> 
> Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>

Acked-by: Jan Beulich <jbeulich@suse.com>