Re: NTP

2014-12-21 Thread John Long
On Fri, Dec 19, 2014 at 06:22:47PM -0700, Theo de Raadt wrote: The ntp daemon included in OpenBSD is our own openntpd, written from scratch. openntpd is not vulnerable. Thank you OpenBSD people and project. I just shitcanned ntp on my Linux box and replaced it with openntpd. I plan to do

Re: UPDATE: xkeyboard-config 2.13

2014-12-21 Thread Matthieu Herrb
On Sun, Dec 21, 2014 at 07:01:03PM +0500, Alexandr Shadchin wrote: Hi, This diff updates xkeyboard-config to the latest release 2.13. Tested on amd64. Comments ? OK ? Works fine for me, and I have not seen anything suspicious in the update. ok matthieu@ -- Matthieu Herrb

Cleanup wsmoused

2014-12-21 Thread Alexandr Shadchin
WSCONS_EVENT_WSMOUSED_SLEEP and WSCONS_EVENT_WSMOUSED_CLOSE not used anymore. OK ? -- Alexandr Shadchin Index: wsconsio.h === RCS file: /cvs/src/sys/dev/wscons/wsconsio.h,v retrieving revision 1.69 diff -u -p -r1.69 wsconsio.h ---

Cleanup wsmousevar.h

2014-12-21 Thread Alexandr Shadchin
WSMOUSE_INPUT_WSMOUSED_CLOSE not used anymore. OK ? -- Alexandr Shadchin Index: wsmousevar.h === RCS file: /cvs/src/sys/dev/wscons/wsmousevar.h,v retrieving revision 1.7 diff -u -p -r1.7 wsmousevar.h --- wsmousevar.h30 Oct

Cleanup wsmoused 2

2014-12-21 Thread Alexandr Shadchin
Now does not need to be initialized event.value. This not used anymore. OK ? -- Alexandr Shadchin Index: wsmoused.c === RCS file: /cvs/src/usr.sbin/wsmoused/wsmoused.c,v retrieving revision 1.33 diff -u -p -r1.33 wsmoused.c ---

Re: UPDATE: xkeyboard-config 2.13

2014-12-21 Thread L.R. d S.
Comments ? OK ? I think you should put this in plain text, not on tgz.

Re: UPDATE: xkeyboard-config 2.13

2014-12-21 Thread Alexandr Shadchin
On Sun, Dec 21, 2014 at 11:12:36PM +, L.R. d S. wrote: Comments ? OK ? I think you should put this in plain text, not on tgz. This patch is large enough. You can download it from http://koba.devio.us/distfiles/xkeyboard-config-2.13.diff -- Alexandr Shadchin

TIMEOUT_INITIALIZER

2014-12-21 Thread David Gwynne
i keep writing code that uses this, cos i was sure i added it years ago. turns out i havent. this is like TASK_INITIALIZER or the queue _INTIIALIZER macros. it lets you init a declaration of a timeout. ok? Index: sys/sys/timeout.h

Re: TIMEOUT_INITIALIZER

2014-12-21 Thread Ted Unangst
On Mon, Dec 22, 2014 at 13:56, David Gwynne wrote: i keep writing code that uses this, cos i was sure i added it years ago. turns out i havent. this is like TASK_INITIALIZER or the queue _INTIIALIZER macros. it lets you init a declaration of a timeout. seems pretty obvious. timeout_set

idle pool page gc

2014-12-21 Thread David Gwynne
this introduces a global gc task that loops over all the pools looking for pages that havent been used for a very long time so they can be freed. this is the simplest way of doing this without introducing per pool timeouts/tasks which in turn could introduce races with pool_destroy, or more