Re: [PATCH v1 1/2] flask: add const qualifier to security_context_to_sid()
Jan Beulich <[email protected]>
| Newsgroups | gmane.comp.emulators.xen.devel |
|---|---|
| Message-ID | <[email protected]> |
On 27.08.2026 11:38, Sergiy Kibrik wrote: > --- a/xen/xsm/flask/include/security.h > +++ b/xen/xsm/flask/include/security.h > @@ -76,7 +76,7 @@ int security_change_sid(u32 ssid, u32 tsid, u16 tclass, u32 *out_sid); > > int security_sid_to_context(u32 sid, char **scontext, u32 *scontext_len); > > -int security_context_to_sid(char *scontext, u32 scontext_len, u32 *out_sid); > +int security_context_to_sid(const char *scontext, u32 scontext_len, u32 *out_sid); I see Daniel has ack-ed this, but: - The line is too long now. - The last parameter name here doesn't match that of the definition. - While touching code anyway, it would be nice if u<N> was converted to uint<N>_t (or else we'll never complete that conversion). I think I'll take the liberty of addressing all of these while committing. Jan