summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_sx.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2007-03-09 16:04:44 +0000
committerjhb <jhb@FreeBSD.org>2007-03-09 16:04:44 +0000
commit8e9f4f8a3953fdcea4f2de5a6005a9162ea334d7 (patch)
tree86f2a7e7abe75c0b251616c227cdca31d02d66dc /sys/kern/kern_sx.c
parent7894c3ad2075da8bd7baf7a8a8e07142b2924575 (diff)
downloadFreeBSD-src-8e9f4f8a3953fdcea4f2de5a6005a9162ea334d7.zip
FreeBSD-src-8e9f4f8a3953fdcea4f2de5a6005a9162ea334d7.tar.gz
Use C99-style struct member initialization for lock classes.
Diffstat (limited to 'sys/kern/kern_sx.c')
-rw-r--r--sys/kern/kern_sx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_sx.c b/sys/kern/kern_sx.c
index 2109c62..d41f94e 100644
--- a/sys/kern/kern_sx.c
+++ b/sys/kern/kern_sx.c
@@ -56,10 +56,10 @@ static void db_show_sx(struct lock_object *lock);
#endif
struct lock_class lock_class_sx = {
- "sx",
- LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE | LC_UPGRADABLE,
+ .lc_name = "sx",
+ .lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE | LC_UPGRADABLE,
#ifdef DDB
- db_show_sx
+ .lc_ddb_show = db_show_sx,
#endif
};
OpenPOWER on IntegriCloud