aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/rwlock.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2006-06-23 19:36:50 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2006-06-23 19:36:50 +0000
commitd90db8479719a0a2856c34d22e0b65c2d1f79a7b (patch)
treed1cb52c90d790d07efcd4dac6668022a14245b28 /sys/sys/rwlock.h
parent555f86b8b6792e6917e3057db33e0ca48fe4b033 (diff)
downloadsrc-d90db8479719a0a2856c34d22e0b65c2d1f79a7b.tar.gz
src-d90db8479719a0a2856c34d22e0b65c2d1f79a7b.zip
Fix the name of the data set item for the SYSUNINIT in RW_SYSINIT to use
'rw' instead of 'mtx'. This should only be a cosmetic change rather than a functional one. Submitted by: Alex Lyashkov <shadow AT itt dot net dot ru>
Notes
Notes: svn path=/head/; revision=159897
Diffstat (limited to 'sys/sys/rwlock.h')
-rw-r--r--sys/sys/rwlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/rwlock.h b/sys/sys/rwlock.h
index d60ef2bf566b..4444e363c7fe 100644
--- a/sys/sys/rwlock.h
+++ b/sys/sys/rwlock.h
@@ -169,7 +169,7 @@ struct rw_args {
}; \
SYSINIT(name##_rw_sysinit, SI_SUB_LOCK, SI_ORDER_MIDDLE, \
rw_sysinit, &name##_args); \
- SYSUNINIT(name##_mtx_sysuninit, SI_SUB_LOCK, SI_ORDER_MIDDLE, \
+ SYSUNINIT(name##_rw_sysuninit, SI_SUB_LOCK, SI_ORDER_MIDDLE, \
rw_destroy, (rw))
/*