b16e6ca399
The debounce's inner clear of C_PORT_CONNECTION could hang or be ignored by the hub, and our control transfers have no timeout — so a literal port of Linux's clear-inside-the-loop design deadlocked hub enumeration: the debounce never converged and the reset/attach path was never reached (observed on QEMU as usbhubd logging the port's first status with connection_changed=true and then going silent forever). Judge the 100ms stable window on the connection STATE alone (the same stability property hub_port_debounce_be_connected protects): a stuck or hung change bit can no longer deadlock enumeration — it only re-triggers a poll, and is cleared once, best-effort, after a successful attach (matching Linux port_event's C_PORT_CONNECTION clear). New regression test debounce_stuck_change_bit_still_converges locks the deadlock scenario; 15/15 tests pass.