Date: Wed, 4 Jul 2007 06:56:58 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_conf.c subr_unit.c src/sys/sys systm.h Message-ID: <200707040656.l646uwZL099867@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
kib 2007-07-04 06:56:58 UTC
FreeBSD src repository
Modified files:
sys/kern kern_conf.c subr_unit.c
sys/sys systm.h
Log:
Since cdev mutex is after system map mutex in global lock order, free()
shall not be called while holding cdev mutex. devfs_inos unrhdr has cdev as
mutex, thus creating this LOR situation.
Postpone calling free() in kern/subr_unit.c:alloc_unr() and nested functions
until the unrhdr mutex is dropped. Save the freed items on the ppfree list
instead, and provide the clean_unrhdrl() and clean_unrhdr() functions to
clean the list.
Call clean_unrhdrl() after devfs_create() calls immediately before
dropping cdev mutex. devfs_create() is the only user of the alloc_unrl()
in the tree.
Reviewed by: phk
Tested by: Peter Holm
LOR: 80
Approved by: re (kensmith)
Revision Changes Path
1.207 +2 -0 src/sys/kern/kern_conf.c
1.9 +34 -1 src/sys/kern/subr_unit.c
1.260 +2 -0 src/sys/sys/systm.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200707040656.l646uwZL099867>
