Potential continue bug in mii(4)

2015-12-27 Thread Michael McConville
The continue statement below is a nop. It seems that it meant to continue the outer loop. This is an educated guess based on the logic and the inner loop's comments. Thoughts? Also, in situations like this, should we make all continue statements goto loop_end? In the fix I committed for pciide(4)

Re: Potential continue bug in mii(4)

2015-12-27 Thread Mark Kettenis
> Date: Sun, 27 Dec 2015 13:36:29 -0500 > From: Michael McConville > > The continue statement below is a nop. It seems that it meant to > continue the outer loop. This is an educated guess based on the logic > and the inner loop's comments. Thoughts? Looks like this is a bug