Re: video(1): use _NET_WM_STATE_FULLSCREEN

2016-09-25 Thread Joerg Jung
Am 26.09.2016 um 00:11 schrieb Dmitrij D. Czarkoff : >> The diff below fixes fullscreen mode on window managers that prevent >> applications from resizing their windows. For example, which WM? >> This is done by setting >> _NET_WM_STATE_FULLSCREEN atom. > > Ping.

Re: timeout_set_proc(9)

2016-09-25 Thread David Gwynne
> On 26 Sep 2016, at 13:36, Ted Unangst wrote: > > David Gwynne wrote: >> +mtx_enter(_mutex); >> +while (!CIRCQ_EMPTY(_proc)) { >> +to = timeout_from_circq(CIRCQ_FIRST(_proc)); >> +CIRCQ_REMOVE(>to_list); >

Re: timeout_set_proc(9)

2016-09-25 Thread Ted Unangst
David Gwynne wrote: > + mtx_enter(_mutex); > + while (!CIRCQ_EMPTY(_proc)) { > + to = timeout_from_circq(CIRCQ_FIRST(_proc)); > + CIRCQ_REMOVE(>to_list); leave(); > + timeout_run(to); enter(); > +

Re: timeout_set_proc(9)

2016-09-25 Thread David Gwynne
On Sat, Sep 24, 2016 at 12:20:02PM +0200, Christiano F. Haesbaert wrote: > Am Samstag, 24. September 2016 schrieb David Gwynne : > > > On Fri, Sep 23, 2016 at 10:16:34PM -0700, Philip Guenther wrote: > > > On Fri, 23 Sep 2016, Christiano F. Haesbaert wrote: > > > ... > > > > The diff as it is

Re: etherip alignment issues

2016-09-25 Thread YASUOKA Masahiko
Hi, I could repeat the problem on my octeon. Tested the diff on it. ok? Use a new mbufs for a tunnel header to make sure it is aligned correctly. Index: sys/net/if_etherip.c === RCS file: /cvs/src/sys/net/if_etherip.c,v

Re: clang and

2016-09-25 Thread David Gwynne
> On 25 Sep 2016, at 01:32, Mark Kettenis wrote: > > clang warns by default about static functions that are unused. It > does this even for static inline functions, except when those > functions are defined in a header file. The RBT code in > has macros that define

Re: video(1): use _NET_WM_STATE_FULLSCREEN

2016-09-25 Thread Dmitrij D. Czarkoff
>The diff below fixes fullscreen mode on window managers that prevent >applications from resizing their windows. This is done by setting >_NET_WM_STATE_FULLSCREEN atom. Ping. -- Dmitrij D. Czarkoff Index: video.c === RCS file:

cdce(4): Move include within the #if NBPFILTER directive

2016-09-25 Thread Frederic Cambus
Hi tech@, Move the net/bpf.h include within the #if NBPFILTER directive. Index: sys/dev/usb/if_cdce.c === RCS file: /cvs/src/sys/dev/usb/if_cdce.c,v retrieving revision 1.70 diff -u -p -r1.70 if_cdce.c --- sys/dev/usb/if_cdce.c

Re: /usr/share/man owner fixes for noperm builds

2016-09-25 Thread Martin Natano
On Sun, Sep 25, 2016 at 01:14:17AM +0200, Theo Buehler wrote: > usr/share/mandoc.db is currently installed as the build user: > > -rw-r--r-- 1 builder wheel 396748 Sep 24 23:07 mandoc.db > > bsd.own.mk defines MANOWN=root, MANGRP=bin, MANMODE=444 and uses these > for installing the manpages

Re: makes struct kinfo_file to provide va_nlink

2016-09-25 Thread Sebastien Marie
On Sat, Sep 24, 2016 at 04:35:39PM -0700, Philip Guenther wrote: > On Sat, 24 Sep 2016, Sebastien Marie wrote: > ... > > The following diff adds a `va_nlink' member in `struct kinfo_file'. The > > information become available though sysctl(3) via KERN_FILE interface, > > as some others members of

Re: Remove more duplicated includes

2016-09-25 Thread Frederic Cambus
On Fri, Sep 23, 2016 at 08:02:03PM +0200, Jeremie Courreges-Anglas wrote: > > > > A few remaining duplicated includes to remove. > > > > Comments? OK? > > ok except for ixgbe.h > > Better remove the unguarded #include, I think. Even if a kernel > configured without BPFILTER will not build...

Re: etherip alignment issues

2016-09-25 Thread YASUOKA Masahiko
On Sat, 24 Sep 2016 16:45:09 -0400 (EDT) Martin Brandenburg wrote: > On Sun, 25 Sep 2016, YASUOKA Masahiko wrote: > >> On Sat, 24 Sep 2016 13:08:18 -0400 (EDT) >> Martin Brandenburg wrote: >> > On Sat, 24 Sep 2016, YASUOKA Masahiko