Re: pvclock(4)

2018-11-24 Thread Greg Steuck
I realize this report is practically useless, but better out than in (according to Shrek). I found this in the logs of my GCE VM running syzkaller bot. No further details were preserved... 2018/11/24 09:53:48 ci-openbsd-main: poll: 94bf4886dbb69e9fbf0f92f975fc23f16fc5c80f 2018/11/24 09:53:48

diff: ftpd(8): fix for sign-compare compiler warnings

2018-11-24 Thread Jan Klemkow
Hi, This diff fixes some -Wsign-compare compiler warnings in ftpd(8) by using the right types for 'i' and 'len'. One warning is left, but I don't see that it's fixable without suppressing the warning by a cast of len to size_t. And casting might be controversial in this case?!

top: allow reverse sort order

2018-11-24 Thread Klemens Nanni
Sometimes I want to see certain programs with least amount of memory, so this diff implements `o -field' to sort in reverse order. The logic is straight forward: 1. merge common code from argument and command loops into new setorder() 2. introduce global state `rev_order' (set in the helper) 3.