Date: Mon, 2 Jul 2007 18:54:15 GMT From: Maxim Zhuravlev <thioretic@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 122734 for review Message-ID: <200707021854.l62IsFl5084380@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=122734 Change 122734 by thioretic@thioretic on 2007/07/02 18:54:01 Just corrected an unfortunate mistake Affected files ... .. //depot/projects/soc2007/thioretic_gidl/kern/subr_bus.c#3 edit Differences ... ==== //depot/projects/soc2007/thioretic_gidl/kern/subr_bus.c#3 (text+ko) ==== @@ -1762,7 +1762,7 @@ for (dl = first_matching_driver(dc, child); dl; dl = next_matching_driver(dc, child, dl)) { - if ((child->state == DS_ALIVE && (dl->driver->flags & (DR_LOWEST|DR_STACKAWARE))) || (child->state != DS_ALIVE && (dl->driver->flags & ~(DR_LOWEST|DR_STACKAWARE)))) + if ((child->state == DS_ALIVE && dl->driver->flags & DR_STACKAWARE && dl->driver->flags & DR_LOWEST) || (child->state != DS_ALIVE && dl->driver->flags & ~DR_LOWEST)) continue; PDEBUG(("Trying %s", DRIVERNAME(dl->driver->devops))); device_set_driver(child, dl->driver);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200707021854.l62IsFl5084380>