Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Mar 2008 11:56:07 +0200
From:      Kostik Belousov <kostikbel@gmail.com>
To:        Peter Much <pmc@citylink.dinoex.sub.org>
Cc:        freebsd-stable@freebsd.org, John Baldwin <jhb@freebsd.org>
Subject:   Re: "s/stable/broken/g"
Message-ID:  <20080327095607.GS7965@deviant.kiev.zoral.com.ua>
In-Reply-To: <20080326234513.GA30601@gate.oper.dinoex.org>
References:  <Jy5EA6.1n3@citylink.dinoex.sub.org> <Jy75oC.Es7@citylink.dinoex.sub.org> <200803261700.12851.jhb@freebsd.org> <20080326234513.GA30601@gate.oper.dinoex.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--ShzQXCswyqjgWi6k
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Thu, Mar 27, 2008 at 12:45:13AM +0100, Peter Much wrote:
> On Wed, Mar 26, 2008 at 05:00:12PM -0400, John Baldwin wrote:
>=20
> ! Try this patch for de(4).
>=20
> Thanks fpr the reply. I'll try this patch at next reboot.
>=20
> ! You need to supply the panic details for the devfs=20
> ! one (I've used devfs rules w/o issue on lots of machines=20
> ! via /etc/devfs.conf).
>=20
> I have found, eh, not the solution but the problem. ;)
> This one: kern/89784 describes the same symptom and nearly
> the same backtrace. And it is still open, so this, well, just
> seems to exist. And, things being this way, I don't think=20
> there is need for me to do any more about it for now, as
> this does not really hurt and workaround is easy.
Try the rev. 1.24 of the devfs_rule.c. In fact, it is fixed by somewhat
bigger patch that I inlined below. It is already in CURRENT and RELENG_7.


Index: fs/devfs/devfs_rule.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /usr/local/arch/ncvs/src/sys/fs/devfs/devfs_rule.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- fs/devfs/devfs_rule.c	6 Nov 2006 13:41:56 -0000	1.23
+++ fs/devfs/devfs_rule.c	20 Mar 2008 16:08:42 -0000	1.24
@@ -527,6 +527,7 @@
 {
 	struct devfs_rule *dr =3D &dk->dk_rule;
 	struct cdev *dev;
+	struct cdevsw *dsw;
=20
 	dev =3D devfs_rule_getdev(de);
 	/*
@@ -540,13 +541,19 @@
 	 * They're actually testing to see whether the condition does
 	 * *not* match, since the default is to assume the rule should
 	 * be run (such as if there are no conditions).
-	 *
-	 * XXX: lacks threadref on dev
 	 */
-	if (dr->dr_icond & DRC_DSWFLAGS)
-		if (dev =3D=3D NULL ||
-		    (dev->si_devsw->d_flags & dr->dr_dswflags) =3D=3D 0)
+	if (dr->dr_icond & DRC_DSWFLAGS) {
+		if (dev =3D=3D NULL)
+			return (0);
+		dsw =3D dev_refthread(dev);
+		if (dsw =3D=3D NULL)
+			return (0);
+		if ((dsw->d_flags & dr->dr_dswflags) =3D=3D 0) {
+			dev_relthread(dev);
 			return (0);
+		}
+		dev_relthread(dev);
+	}
 	if (dr->dr_icond & DRC_PATHPTRN)
 		if (!devfs_rule_matchpath(dk, de))
 			return (0);
Index: vm/vm_mmap.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /usr/local/arch/ncvs/src/sys/vm/vm_mmap.c,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- vm/vm_mmap.c	16 Mar 2008 10:58:09 -0000	1.217
+++ vm/vm_mmap.c	20 Mar 2008 16:08:42 -0000	1.218
@@ -1160,6 +1160,7 @@
 	void *handle;
 	vm_object_t obj;
 	struct mount *mp;
+	struct cdevsw *dsw;
 	int error, flags, type;
 	int vfslocked;
=20
@@ -1190,13 +1191,19 @@
 		type =3D OBJT_DEVICE;
 		handle =3D vp->v_rdev;
=20
-		/* XXX: lack thredref on device */
-		if(vp->v_rdev->si_devsw->d_flags & D_MMAP_ANON) {
+		dsw =3D dev_refthread(handle);
+		if (dsw =3D=3D NULL) {
+			error =3D ENXIO;
+			goto done;
+		}
+		if (dsw->d_flags & D_MMAP_ANON) {
+			dev_relthread(handle);
 			*maxprotp =3D VM_PROT_ALL;
 			*flagsp |=3D MAP_ANON;
 			error =3D 0;
 			goto done;
 		}
+		dev_relthread(handle);
 		/*
 		 * cdevs does not provide private mappings of any kind.
 		 */
@@ -1273,16 +1280,21 @@
     struct cdev *cdev, vm_ooffset_t foff, vm_object_t *objp)
 {
 	vm_object_t obj;
+	struct cdevsw *dsw;
 	int flags;
=20
 	flags =3D *flagsp;
=20
-	/* XXX: lack thredref on device */
-	if (cdev->si_devsw->d_flags & D_MMAP_ANON) {
+	dsw =3D dev_refthread(cdev);
+	if (dsw =3D=3D NULL)
+		return (ENXIO);
+	if (dsw->d_flags & D_MMAP_ANON) {
+		dev_relthread(cdev);
 		*maxprotp =3D VM_PROT_ALL;
 		*flagsp |=3D MAP_ANON;
 		return (0);
 	}
+	dev_relthread(cdev);
 	/*
 	 * cdevs does not provide private mappings of any kind.
 	 */

--ShzQXCswyqjgWi6k
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (FreeBSD)

iEYEARECAAYFAkfrbzcACgkQC3+MBN1Mb4iq8wCghaYXvHnBqa27cnrSttG6evCk
sDMAoI6kWlN/OipcOCAoGeoucc5/uB0c
=9jcR
-----END PGP SIGNATURE-----

--ShzQXCswyqjgWi6k--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080327095607.GS7965>