From d90db8479719a0a2856c34d22e0b65c2d1f79a7b Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 23 Jun 2006 19:36:50 +0000 Subject: [PATCH] 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 --- sys/sys/rwlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) /*