Re: [RFC wayland 13/18] connections: Add remote sockets

2016-02-10 Thread Pekka Paalanen
On Tue, 9 Feb 2016 10:56:00 -0600 Derek Foreman wrote: > This allows adding a tcp/ip socket and adds tracking of the remote status > for clients and proxies > > Signed-off-by: Derek Foreman > --- > src/connection.c | 11 +++- >

Re: [server-core] Add signal for creation of clients.

2016-02-10 Thread Pekka Paalanen
On Wed, 10 Feb 2016 17:35:40 +0200 Pekka Paalanen wrote: > Hi, > > the subject should be: > [PATCH wayland] server: add listener API for new clients > > On Tue, 9 Feb 2016 17:31:27 +0200 > Giulio Camuffo wrote: > > > Hi, > > > > thanks, i think

Re: [PATCH weston] hmi-controller: remove duplicate commit_changes in random mode

2016-02-10 Thread Pekka Paalanen
On Wed, 10 Feb 2016 08:54:47 + "Ucan, Emre (ADITG/SW1)" wrote: > Hi Pekka, > > My comments are below Hi Emre > > -Original Message- > > From: Pekka Paalanen [mailto:ppaala...@gmail.com] > > Sent: Montag, 8. Februar 2016 10:21 > > To: Ucan, Emre (ADITG/SW1) >

Re: [server-core] Add signal for creation of clients.

2016-02-10 Thread Pekka Paalanen
Hi, the subject should be: [PATCH wayland] server: add listener API for new clients On Tue, 9 Feb 2016 17:31:27 +0200 Giulio Camuffo wrote: > Hi, > > thanks, i think this was long overdue. I have a few comments below. Indeed. > 2016-02-04 11:59 GMT+02:00

[PATCH] connection: Don't add uninitialized memory as 4 byte alignment padding

2016-02-10 Thread Jonas Ådahl
When we are adding padding bytes making our wl_buffer buffer content 4 byte aligned, we are just moving the pointer. Since the buffer is allocated using plain malloc(), this means our padding bytes are effectively uninitialized data, which could be anything previously allocated in the server

Re: [RFC wayland 01/18] shm: add getters for the fd and offset

2016-02-10 Thread Derek Foreman
On 10/02/16 07:08 AM, Pekka Paalanen wrote: > On Tue, 9 Feb 2016 10:55:48 -0600 > Derek Foreman wrote: > >> From: Giulio Camuffo >> >> This allows to share the buffer data by mmapping the fd again. >> Reviewed-by: David FORT

[PATCH weston] define drm-backend configuration API

2016-02-10 Thread Benoit Gschwind
Hello, I'm happy with this patch. This patch implement an hybrid option 2-3 that we previously discussed. compositor-drm.h provide the expected public API. The compositor-drm-static.h is a private header that define the opaque struct weston_drm_backend_config. The compositor-drm-static.c

Re: [RFC wayland 13/18] connections: Add remote sockets

2016-02-10 Thread Derek Foreman
Please forgive my mailer for what it's done to the content below. :/ On 10/02/16 07:33 AM, Pekka Paalanen wrote: > On Tue, 9 Feb 2016 10:56:00 -0600 Derek Foreman > wrote: > >> This allows adding a tcp/ip socket and adds tracking of the >> remote status for clients and

Re: [PATCH] connection: Don't add uninitialized memory as 4 byte alignment padding

2016-02-10 Thread Derek Foreman
On 10/02/16 09:35 AM, Jonas Ådahl wrote: > When we are adding padding bytes making our wl_buffer buffer content 4 > byte aligned, we are just moving the pointer. Since the buffer is > allocated using plain malloc(), this means our padding bytes are > effectively uninitialized data, which could be

[PATCH libinput] test: add tablet test for out-of-bounds motion coordinates

2016-02-10 Thread Peter Hutterer
The newer Cintiqs have a minimum value of 400/400 advertised by the kernel but the actual sensor goes past the 0/0 origin. Test this, make sure that a value outside the boundaries generates negative mm values. Signed-off-by: Peter Hutterer --- Mostly just documenting

RE: [PATCH weston] hmi-controller: remove duplicate commit_changes in random mode

2016-02-10 Thread Ucan, Emre (ADITG/SW1)
Hi Pekka, My comments are below > -Original Message- > From: Pekka Paalanen [mailto:ppaala...@gmail.com] > Sent: Montag, 8. Februar 2016 10:21 > To: Ucan, Emre (ADITG/SW1) > Cc: Nobuhiko Tanibata; securitych...@denso.co.jp; Natsume, Wataru > (ADITJ/SWG);

Re: [RFC wayland 01/18] shm: add getters for the fd and offset

2016-02-10 Thread Pekka Paalanen
On Tue, 9 Feb 2016 10:55:48 -0600 Derek Foreman wrote: > From: Giulio Camuffo > > This allows to share the buffer data by mmapping the fd again. > Reviewed-by: David FORT > > Signed-off-by: Derek Foreman

Re: [PATCH] connection: Don't add uninitialized memory as 4 byte alignment padding

2016-02-10 Thread Jonas Ådahl
On Wed, Feb 10, 2016 at 12:37:43PM -0600, Derek Foreman wrote: > On 10/02/16 09:35 AM, Jonas Ådahl wrote: > > When we are adding padding bytes making our wl_buffer buffer content 4 > > byte aligned, we are just moving the pointer. Since the buffer is > > allocated using plain malloc(), this means