[PATCH libinput] tools: record udev properties in libinput-record

2018-03-07 Thread Peter Hutterer
Only the ones we care about in libinput but for those it's handy to know which ones are set (especially the LIBINPUT_MODEL ones). Signed-off-by: Peter Hutterer --- meson.build | 2 +- tools/libinput-record.c | 48 +++ tools/libinput-re

[PATCH weston] libweston/compositor-drm: Reset repaint scheduled status when setting DPMS level to off

2018-03-07 Thread Marius Vlad
Otherwise when setting dpms level DPMS_ON, weston_output_schedule_repaint() will bail out early and never get a chance to wake up the output. Arguably this could also be done in drm_set_dpms() when setting dpms_off_pending but I figure it better to do it when deferred. Signed-off-by: Marius Vlad

Re: [PATCH wayland] client: Don't inappropriatly close fds for zombie objects

2018-03-07 Thread Derek Foreman
On 2018-03-07 09:16 AM, Daniel Stone wrote: On 6 March 2018 at 23:38, Derek Foreman wrote: commit 239ba39331420f953de35c337ae57db35573f9cb which was intended to stop leaking fds in events for zombie objects didn't notice that passing 0 to wl_connection_close_fds_in() would still close fds. Tes

Re: [PATCH wayland] client: Don't inappropriatly close fds for zombie objects

2018-03-07 Thread Daniel Stone
On 6 March 2018 at 23:38, Derek Foreman wrote: > commit 239ba39331420f953de35c337ae57db35573f9cb which was intended > to stop leaking fds in events for zombie objects didn't notice that > passing 0 to wl_connection_close_fds_in() would still close fds. > > Test the fd count before calling. Ouch.