]> xenbits.xensource.com Git - xen.git/commitdiff
xen/memory: make 'ioreq_server_max_frames' static
authorNicola Vetrini <nicola.vetrini@bugseng.com>
Thu, 10 Aug 2023 13:12:56 +0000 (15:12 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 10 Aug 2023 13:12:56 +0000 (15:12 +0200)
The function 'ioreq_server_max_frames' can be defined static,
as its only uses are within the same file. This in turn avoids
violating MISRA C:2012 Rule 8.4 because no declaration is present.

No functional change.

Fixes: 9244528955de ("xen/memory: Fix acquire_resource size semantics”)
Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
Reviewed-by: Luca Fancellu <luca.fancellu@arm.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
xen/common/memory.c

index c206fa48087dede64cc541c6e0b69077f5f175d3..b1dcbaf551e6887606c12e8135cb2112ddca264b 100644 (file)
@@ -1120,7 +1120,7 @@ static long xatp_permission_check(struct domain *d, unsigned int space)
     return xsm_add_to_physmap(XSM_TARGET, current->domain, d);
 }
 
-unsigned int ioreq_server_max_frames(const struct domain *d)
+static unsigned int ioreq_server_max_frames(const struct domain *d)
 {
     unsigned int nr = 0;