Re: pppx(4) and a pppx interface group

2013-02-03 Thread Mattieu Baptiste
On Fri, Feb 1, 2013 at 10:17 PM, Stuart Henderson s...@spacehopper.orgwrote: In gmane.os.openbsd.misc, Mattieu Baptiste wrote: Hi, I'm testing npppd with pppx(4). As i'm understanding npppd, a new pppx(4) interface is created for every new session. Thus, new /dev/pppxN nodes must be

scsi_xfers and hand rolled queue.h type operations

2013-02-03 Thread David Gwynne
scsi_xfers have a thing in them for letting adapters store them on lists via a LIST_ENTRY. turns out most adapters want SIMPLEQ type operations, so they end up doing things by hand. LIST_ENTRYs and SIMPLEQ_ENTRYs are the same size, so this is effectively just a code simplification. id appreciate