Re: [PATCH v3 6/6] xen: make config argument const
Andrew Cooper <[email protected]>
| Newsgroups | org.xenproject.lists.xen-devel |
|---|---|
| Message-ID | <[email protected]> |
On 16/07/2026 3:11 pm, Julian Vetter wrote: > diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h > index 011292e9f7..66ed7454ba 100644 > --- a/xen/include/xen/sched.h > +++ b/xen/include/xen/sched.h > @@ -756,9 +756,11 @@ static inline void domain_update_node_affinity(struct domain *d) > > /* > * To be implemented by each architecture, sanity checking the configuration > - * and filling in any appropriate defaults. > + * requested by the toolstack. config is not modified: createdomain is > + * input-only, and the toolstack is expected to have already resolved any > + * defaults. > */ Again, "toostack" is wrong to say here. I'd suggest finishing the sentence at "the configuration." ~Andrew > -int arch_sanitise_domain_config(struct xen_domctl_createdomain *config); > +int arch_sanitise_domain_config(const struct xen_domctl_createdomain *config); > > /* > * Create a domain: the configuration is only necessary for real domain