Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Mar 2011 20:48:48 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 190436 for review
Message-ID:  <201103232048.p2NKmmRv030968@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@190436?ac=10

Change 190436 by jhb@jhb_jhbbsd on 2011/03/23 20:48:21

	Fix a typo.

Affected files ...

.. //depot/projects/pci/sys/kern/subr_rman.c#3 edit

Differences ...

==== //depot/projects/pci/sys/kern/subr_rman.c#3 (text+ko) ====

@@ -341,7 +341,7 @@
 			s->r_end = start - 1;
 	}
 	if (end > r->r_end ||
-	    (end < t->r_end && t != NULL && !(t->r_flags & RF_ALLOCATED))) {
+	    (end < r->r_end && t != NULL && !(t->r_flags & RF_ALLOCATED))) {
 		KASSERT(t->r_flags == 0, ("next is busy"));
 		r->r_end = end;
 		if (t->r_end == end) {



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