PERFORCE change 113101 for review
John Baldwin
jhb at freebsd.org
Thu Jan 18 14:37:11 UTC 2007
On Thursday 18 January 2007 05:08, Hans Petter Selasky wrote:
> http://perforce.freebsd.org/chv.cgi?CH=113101
>
> Change 113101 by hselasky at hselasky_mini_itx on 2007/01/18 10:07:13
>
> If the number of devices changed during list traversal, set
> "count" to the lowest value.
There shouldn't be a need for this. Currently this stuff is protected
by Giant, but at some point in the future it will all be covered with
an sx lock which will basically single-thread most of new-bus including
attach/detach, etc.
> Affected files ...
>
> .. //depot/projects/usb/src/sys/kern/subr_bus.c#4 edit
>
> Differences ...
>
> ==== //depot/projects/usb/src/sys/kern/subr_bus.c#4 (text+ko) ====
>
> @@ -1876,13 +1876,16 @@
> TAILQ_FOREACH(child, &dev->children, link) {
> if (n < count) {
> list[n] = child;
> - n++;
> }
> + n++;
> }
>
> if (n != count) {
> printf("device_get_children: Number of devices changed "
> "from %d to %d!\n", count, n);
> + if (n < count) {
> + count = n;
> + }
> }
>
> *devlistp = list;
>
--
John Baldwin
More information about the p4-projects
mailing list