Date: Fri, 5 Sep 2025 16:01:16 GMT From: Zhenlei Huang <zlei@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 306f0c4cf1a2 - main - sx: Sprinkle const qualifiers where appropriate Message-ID: <202509051601.585G1G5x087447@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=306f0c4cf1a2f58a56993d29d666b4643326493b commit 306f0c4cf1a2f58a56993d29d666b4643326493b Author: Zhenlei Huang <zlei@FreeBSD.org> AuthorDate: 2025-09-05 16:00:05 +0000 Commit: Zhenlei Huang <zlei@FreeBSD.org> CommitDate: 2025-09-05 16:00:05 +0000 sx: Sprinkle const qualifiers where appropriate No functional change intended. MFC after: 2 weeks --- sys/kern/kern_sx.c | 4 ++-- sys/sys/sx.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/kern_sx.c b/sys/kern/kern_sx.c index accea5d288eb..c005e112d3b9 100644 --- a/sys/kern/kern_sx.c +++ b/sys/kern/kern_sx.c @@ -222,9 +222,9 @@ owner_sx(const struct lock_object *lock, struct thread **owner) #endif void -sx_sysinit(void *arg) +sx_sysinit(const void *arg) { - struct sx_args *sargs = arg; + const struct sx_args *sargs = arg; sx_init_flags(sargs->sa_sx, sargs->sa_desc, sargs->sa_flags); } diff --git a/sys/sys/sx.h b/sys/sys/sx.h index deb277decc75..d28cae9d01e5 100644 --- a/sys/sys/sx.h +++ b/sys/sys/sx.h @@ -99,7 +99,7 @@ * Function prototipes. Routines that start with an underscore are not part * of the public interface and are wrappered with a macro. */ -void sx_sysinit(void *arg); +void sx_sysinit(const void *arg); #define sx_init(sx, desc) sx_init_flags((sx), (desc), 0) void sx_init_flags(struct sx *sx, const char *description, int opts); void sx_destroy(struct sx *sx);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202509051601.585G1G5x087447>