Hi Joerg,
could you please take a look at tunstart in if_tun:
if (!ifq_is_enabled(&ifp->if_snd))
return;
always evaluates to true if altq is not enabled. I simply
removed these lines and everything is back to normal.
You probably want to conditionalize this statement for
altq enabled kernels.
- Dirk