@@ -48,7 +48,7 @@ static void unregister_guest_nmi_callback(void)
memset(t, 0, sizeof(*t));
}
-static long register_guest_callback(struct callback_register *reg)
+static long register_guest_callback(const struct callback_register *reg)
{
long ret = 0;
struct vcpu *curr = current;
@@ -102,7 +102,7 @@ static long register_guest_callback(struct callback_register *reg)
return ret;
}
-static long unregister_guest_callback(struct callback_unregister *unreg)
+static long unregister_guest_callback(const struct callback_unregister *unreg)
{
long ret;
@@ -26,7 +26,7 @@ CHECK_sched_shutdown;
CHECK_sched_remote_shutdown;
#undef xen_sched_remote_shutdown
-static int compat_poll(struct compat_sched_poll *compat)
+static int compat_poll(const struct compat_sched_poll *compat)
{
struct sched_poll native;
@@ -1431,7 +1431,7 @@ static void vcpu_block_enable_events(void)
vcpu_block();
}
-static long do_poll(struct sched_poll *sched_poll)
+static long do_poll(const struct sched_poll *sched_poll)
{
struct vcpu *v = current;
struct domain *d = v->domain;
@@ -469,7 +469,7 @@ static int flask_security_load(struct xen_flask_load *load)
return ret;
}
-static int flask_devicetree_label(struct xen_flask_devicetree_label *arg)
+static int flask_devicetree_label(const struct xen_flask_devicetree_label *arg)
{
int rv;
char *buf;
@@ -492,7 +492,7 @@ static int flask_devicetree_label(struct xen_flask_devicetree_label *arg)
#ifndef COMPAT
-static int flask_ocontext_del(struct xen_flask_ocontext *arg)
+static int flask_ocontext_del(const struct xen_flask_ocontext *arg)
{
int rv;
@@ -506,7 +506,7 @@ static int flask_ocontext_del(struct xen_flask_ocontext *arg)
return security_ocontext_del(arg->ocon, arg->low, arg->high);
}
-static int flask_ocontext_add(struct xen_flask_ocontext *arg)
+static int flask_ocontext_add(const struct xen_flask_ocontext *arg)
{
int rv;
@@ -550,7 +550,7 @@ static int flask_get_peer_sid(struct xen_flask_peersid *arg)
return rv;
}
-static int flask_relabel_domain(struct xen_flask_relabel *arg)
+static int flask_relabel_domain(const struct xen_flask_relabel *arg)
{
int rc;
struct domain *d;
Make clean they are not changed in the functions. Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com> --- xen/arch/x86/pv/callback.c | 4 ++-- xen/common/sched/compat.c | 2 +- xen/common/sched/core.c | 2 +- xen/xsm/flask/flask_op.c | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-)