Re: xor lists

2013-04-18 Thread Ted Unangst
On Wed, Apr 17, 2013 at 20:06, Ted Unangst wrote: > +#define XSIMPLEQ_INIT(head) do { > \ > + (head)->sqx_cookie = arc4random(); \ > + if (sizeof(unsigned long) == 8) \ > +

divert(4) man page: document recent checksum changes

2013-04-18 Thread Lawrence Teo
This diff documents my recent checksum recalculation changes for divert(4): http://marc.info/?l=openbsd-cvs&m=136543514928571&w=2 I have also made the text more specific to clarify that divert sockets are only applicable to PF rules with the divert-packet parameter, with an explicit note that it

Re: tmpfs

2013-04-18 Thread Pedro Martelletto
One more note. We already have a fmt_scaled function in libutil which would be better than introducing a private dehumanisze_number. Good point; I will switch to fmt_scaled() in the next iteration of the diff. -p.