Re: is this rge crash known? - fixed

2022-12-19 Thread Nick Owens
patch also works fine on my odroid-h2+. it worked fine before, but there is no regression here. thanks! On Mon, Dec 19, 2022 at 10:04 PM Geoff Steckel wrote: > > On 12/19/22 21:07, Kevin Lo wrote: > > On Mon, Dec 19, 2022 at 03:50:45PM -0500, Geoff Steckel wrote: > >> Thanks for all the

Re: ifconfig.8: document veb(4)

2021-03-19 Thread Nick Owens
On Thu, Mar 11, 2021 at 2:15 AM David Gwynne wrote: > > > > > On 11 Mar 2021, at 8:06 pm, Klemens Nanni wrote: > > > > On Thu, Mar 11, 2021 at 01:46:34PM +1000, David Gwynne wrote: > > > >>> +.It Cm link0 > >>> +Disable the filtering of 802.1Q VLAN and QinQ SVLAN packets. > >>> +.It Cm -link0 >

pf pledge and ioctls

2018-04-30 Thread Nick Owens
hi tech@, i've written a program in go which gathers information from pf for exporting to prometheus. my go program invokes several ioctls on /dev/pf to do this. however, i recently looked at pledge'ing my program, but i've noticed that not all of the pf ioctls that i use are included in the pf

Re: vmd: reset queue_size if queue_select is invalid

2017-08-03 Thread Nick Owens
ping? On Thu, Jul 27, 2017 at 10:20 AM, Mike Larkin <mlar...@azathoth.net> wrote: > On Wed, Jul 26, 2017 at 09:37:30PM -0700, Nick Owens wrote: >> hello tech@, >> >> here is a diff that will follow the virtio spec a little closer, and >> allows 9front's (htt

Re: [patch] httpd: don't add date header if already set

2017-07-29 Thread Nick Owens
ping? On Jul 18, 2017 19:01, "Nick Owens" <misch...@offblast.org> wrote: hello tech@, here is a diff that will cause httpd's fcgi code to not set the HTTP date header if it has already been set. the code i am using for an fcgi server (https://github.com/golang/go/blob/master/s

vmd: reset queue_size if queue_select is invalid

2017-07-26 Thread Nick Owens
hello tech@, here is a diff that will follow the virtio spec a little closer, and allows 9front's (http://9front.org) virtio-blk driver to correctly find the number of queues. i know that virtio-blk only has one queue, but the virtio probing code is shared between virtio-blk and virtio-scsi.

[patch] httpd: don't add date header if already set

2017-07-18 Thread Nick Owens
hello tech@, here is a diff that will cause httpd's fcgi code to not set the HTTP date header if it has already been set. the code i am using for an fcgi server (https://github.com/golang/go/blob/master/src/net/http/fcgi/child.go#L102) unconditionally sets the Date header, so with httpd there