wi(4) hostap vs if_enqueue

2015-11-03 Thread David Gwynne
if_wi_hostap.c basically inlines what if_enqueue does, but badly. more specifically, it uses IF_FOO operations to manipulate the interfaces send queue, but they only work if you're using priq. if you have hfsc on the interface it's not going to work well. this makes it just call if_enqueue. ok?

Re: wi(4) hostap vs if_enqueue

2015-11-03 Thread Martin Pieuchot
On 04/11/15(Wed) 10:29, David Gwynne wrote: > if_wi_hostap.c basically inlines what if_enqueue does, but badly. > > more specifically, it uses IF_FOO operations to manipulate the > interfaces send queue, but they only work if you're using priq. if > you have hfsc on the interface it's not going