PERFORCE change 190436 for review

John Baldwin jhb at FreeBSD.org
Wed Mar 23 20:48:49 UTC 2011


http://p4web.freebsd.org/@@190436?ac=10

Change 190436 by jhb at 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) {


More information about the p4-projects mailing list