When the ft.c code does the attach it uses polling in the ftintr_waiti(in the if (ft->attach), in case FTCMD_SEEK) with a delay(100) which is too short. I changed this to 1000. Fix: /usr/src/sys/i386/isa> diff ft.c.orig ft.c 1480c1480,1481 < DELAY(100); --- > DELAY(1000); > /* DELAY(100); */
State Changed From-To: open->closed committer reports this as being cfixed