CVSROOT: /cvs Module name: src Changes by: d...@cvs.openbsd.org 2017/06/01 17:17:01
Modified files: sys/dev/pci : if_sk.c Log message: reorder ops in sk_start to avoid possibly rolling back ifq_deq. instead of checking for space after beggining to deq a packet, check for space before committing to handling a packet. this means we can use ifq_dequeue instead of ifq_deq_begin/commit/rollback. ok mikeb@