[PATCH] render: Fix leak of filter params

2014-01-27 Thread Chris Wilson
==11097== 2,048 (+1,640) bytes in 32 (+26) blocks are definitely lost in loss record 1,570 of 1,719 ==11097==at 0x4C2A2DB: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==11097==by 0x225EF3: SetPicturePictFilter (filter.c:339) ==11097==by 0x22DF4F:

Re: Intent todo a libxtrans-1.3.3 release coming Monday

2014-01-27 Thread Hans de Goede
Hi, On 01/23/2014 05:33 PM, Jon TURNEY wrote: On 23/01/2014 10:40, Hans de Goede wrote: I've just pushed the 2 systemd socket activation patches by Łukasz Stelmach for libxtrans to libxtrans master. I intend to cut a 1.3.3 release with these patches in there Monday. So if there are any

[PULL] systemd integration patches

2014-01-27 Thread Hans de Goede
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Keith, Please pull from my tree for: - -systemd-socket activation support - -xfree86: Keep a non-seat0 X server from touching VTs (#71258) - -various preparation patches for systemd-logind integration The following changes since commit

[PULL] glamor-reformat

2014-01-27 Thread Eric Anholt
The following changes since commit c1ce807d9f18f215332d7eeb844e8c640f71c53c: dix: Praise clients which haven't run for a while, rather than idle clients (2014-01-23 10:10:28 -0800) are available in the git repository at: git://people.freedesktop.org/~anholt/xserver glamor-reformat for you

Re: [PATCH] edid: Add quirk for Sony Vaio Pro 13

2014-01-27 Thread Arun Raghavan
On 6 January 2014 20:29, Arun Raghavan a...@accosted.net wrote: The detailed timings are for a 15.6 display when max image size correctly reports 13.3. Signed-off-by: Arun Raghavan a...@accosted.net --- hw/xfree86/modes/xf86EdidModes.c | 5 + 1 file changed, 5 insertions(+) diff

Re: [Mesa-dev] What use do swap interval 1 and OML_sync_control divisor and remainder have?

2014-01-27 Thread Ian Romanick
On 01/24/2014 04:32 AM, Pekka Paalanen wrote: Hi, I am investigating what kind of Wayland protocol extensions would be needed to support proper presentation timing. Looking at existing works, I am wondering about two things whether they have any real use. Where is swap interval (e.g.

[PATCH 5/5] test: Fix compiler warning on 64-bit.

2014-01-27 Thread Eric Anholt
We all know that XIDs are 32 bits, even if 32-bit headers call them long. --- test/hashtabletest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hashtabletest.c b/test/hashtabletest.c index ceadfa7..a37dfb5 100644 --- a/test/hashtabletest.c +++ b/test/hashtabletest.c @@

[PATCH 4/5] xfree86: Fix a compiler warning on 64-bit.

2014-01-27 Thread Eric Anholt
asm/mtrr.h makes this an unsigned long on 32, but a u64 on 64. Cast it to a long to win. --- hw/xfree86/os-support/linux/lnx_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/os-support/linux/lnx_video.c b/hw/xfree86/os-support/linux/lnx_video.c index

[PATCH 1/5] glx: Stop relying on libGL ABI bugs for glGetCompressedTexImage().

2014-01-27 Thread Eric Anholt
In theory, the linux libGL ABI exposes just GL 1.2 plus GLX 1.3. But, thanks to libglapi, we're letting glGetCompressedTexImageARB() be exposed too. The GLX code was inappropriately relying on it by using GL_GLEXT_PROTOTYPES. --- glx/indirect_texture_compression.c | 8 ++-- 1 file changed,

[PATCH 2/5] glx: Reduce compiler warnings by not requesting GL extension prototypes.

2014-01-27 Thread Eric Anholt
They're not officially in the ABI, so you shouldn't use them anyway. --- glx/glxserver.h | 1 - 1 file changed, 1 deletion(-) diff --git a/glx/glxserver.h b/glx/glxserver.h index 7f36e5f..3f2ae35 100644 --- a/glx/glxserver.h +++ b/glx/glxserver.h @@ -46,7 +46,6 @@ #include resource.h #include

[PATCH 3/5] glx: Delete dead NV program string functions.

2014-01-27 Thread Eric Anholt
These have been throwing a compiler warning about missing prototypes, since the generated code to define the prototypes stopped being generated (possibly because the code was dead). --- glx/indirect_program.c | 22 -- 1 file changed, 22 deletions(-) diff --git

Re: [PATCH] Replace 'pointer' with the equivalent 'void *'.

2014-01-27 Thread Keith Packard
Knut Petersen knut_peter...@t-online.de writes: Hi Gaetan! Keith pushed xserver 60014a4 and broke building of xserver master. Keith's first fontproto patch didn´t apply as it was based on another patch. Both patches together fixed xserver but broke libXfont and xfs. Here's a patch for

Re: [PATCH] render: Fix leak of filter params

2014-01-27 Thread Ángel González
On 27/01/14 10:44, Chris Wilson wrote: ==11097== 2,048 (+1,640) bytes in 32 (+26) blocks are definitely lost in loss record 1,570 of 1,719 ==11097==at 0x4C2A2DB: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==11097==by 0x225EF3: SetPicturePictFilter (filter.c:339)

Re: [PATCH 5/5] test: Fix compiler warning on 64-bit.

2014-01-27 Thread Mark Kettenis
From: Eric Anholt e...@anholt.net Date: Mon, 27 Jan 2014 11:36:09 -0800 We all know that XIDs are 32 bits, even if 32-bit headers call them long. --- test/hashtabletest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hashtabletest.c b/test/hashtabletest.c

Re: [PATCH] Replace 'pointer' with the equivalent 'void *'.

2014-01-27 Thread Gaetan Nadon
On 14-01-27 03:00 PM, Keith Packard wrote: Here's a patch for libXfont. I have no patch for xfs, and would welcome anyone to go ahead and fix that. xfs is fine. My source tree became into an invalid state at which point Knut came to the rescue. ___

Re: [PATCH] Replace 'pointer' with the equivalent 'void *'.

2014-01-27 Thread Keith Packard
Gaetan Nadon mems...@videotron.ca writes: On 14-01-27 03:00 PM, Keith Packard wrote: Here's a patch for libXfont. I have no patch for xfs, and would welcome anyone to go ahead and fix that. xfs is fine. My source tree became into an invalid state at which point Knut came to the rescue.

Re: warning-fixes review.

2014-01-27 Thread Keith Packard
Eric has reviewed the updated version of these patches. Merged. c1ce807..7ddef4f master - master -- keith.pack...@intel.com pgpmzji9HjlcS.pgp Description: PGP signature ___ xorg-devel@lists.x.org: X.Org development Archives:

Re: [PULL] glamor-reformat

2014-01-27 Thread Keith Packard
Eric Anholt e...@anholt.net writes: Adam Jackson (3): glamor: Remove copy of sna's compiler.h glamor/egl: Remove glapi awareness glamor: Use dix-config.h not project config.h Eric Anholt (14): glamor: Touch up some code so indent doesn't get confused. glamor:

Re: [PULL] systemd integration patches

2014-01-27 Thread Keith Packard
Hans de Goede hdego...@redhat.com writes: Hans de Goede (5): dbus-core: Make dbus-core no longer mutually exclusive with udev dbus-core: Attempt to connect to dbus ASAP xf86Events: split xf86VTSwitch into xf86VTLeave and xf86VTEnter functions xf86Events: refactor

Re: Licence information request - GCCMAKEDEP

2014-01-27 Thread Alan Coopersmith
gccmakedep has no active maintainer. I am one of the X.Org developers who can make changes to it when needed, but have no special knowledge of it. To the best of my knowledge, gccmakedep was created by XFree86 and is thus likely covered under the XFree86 1.0 license terms:

Re: [PATCH] config: show default path in help for --with-xkb-bin-directory

2014-01-27 Thread Peter Hutterer
On Fri, Jan 24, 2014 at 07:46:53PM -0800, Alan Coopersmith wrote: Now shows: --with-xkb-bin-directory=DIR Directory containing xkbcomp program (default: ${bindir}) Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com Reviewed-by:

[PULL] two minor fixes

2014-01-27 Thread Peter Hutterer
The following changes since commit c1ce807d9f18f215332d7eeb844e8c640f71c53c: dix: Praise clients which haven't run for a while, rather than idle clients (2014-01-23 10:10:28 -0800) are available in the git repository at: git://people.freedesktop.org/~whot/xserver for-keith for you to

Re: After newest xserver build, Google Chrome Chromium browser issue.

2014-01-27 Thread Robert Hooker
On Sun, Jan 26, 2014 at 6:40 AM, Jose R R jose@metztli-it.com wrote: Niltze- X.Org X Server 1.15.99.900 (1.16.0 RC 0) Release Date: 2014-01-09 After the latest x.org build ( http://www.x.org/wiki/Building_the_X_Window_System/ ) on GNU/Linux Debian, *both* Google's Chrome and open

Re: [PULL] two minor fixes

2014-01-27 Thread Keith Packard
Peter Hutterer peter.hutte...@who-t.net writes: Alan Coopersmith (1): Check for calloc() failure in add_master() Peter Hutterer (1): Xi: fix modifier offset in XIPassiveGrab swapping function Merged. 0fbb3d7..da1660d master - master -- keith.pack...@intel.com

Re: How do we want to deal with 4k tiled displays?

2014-01-27 Thread Pierre-Loup A. Griffais
I see lots of discussion has happened on that front already; sorry for being late to the party. I'm currently wrestling against a Dell UP3214Q, which seems to exhibit all of the problems you refer to. There are many existing binary games out there that most likely will never get touched again

Re: How do we want to deal with 4k tiled displays?

2014-01-27 Thread Keith Packard
Pierre-Loup A. Griffais pgriff...@valvesoftware.com writes: It seems the X server should be responsible for both making sure the two halves are laid out properly (right now they're in reverse order) and hidden from clients. This database of quirks would ideally live in the server itself

Re: [PATCH 03/12] xf86Events: split xf86VTSwitch into xf86VTLeave and xf86VTEnter functions

2014-01-27 Thread Peter Hutterer
On Wed, Jan 15, 2014 at 03:32:17PM +0100, Hans de Goede wrote: Signed-off-by: Hans de Goede hdego...@redhat.com Reviewed-by: Peter Hutterer peter.hutte...@who-t.net Cheers, Peter --- hw/xfree86/common/xf86.h | 2 + hw/xfree86/common/xf86Events.c | 273

Re: [PATCH 04/12] xf86Events: refactor xf86VTLeave error handling

2014-01-27 Thread Peter Hutterer
On Wed, Jan 15, 2014 at 03:32:18PM +0100, Hans de Goede wrote: Use kernel goto style error handling for xf86VTSwitchAway() failure. This makes it much easier to read the straight path. Signed-off-by: Hans de Goede hdego...@redhat.com Reviewed-by: Peter Hutterer peter.hutte...@who-t.net

Re: [PATCH 05/12] xf86Events: add Enable/DisableInputDeviceForVTSwitch functions

2014-01-27 Thread Peter Hutterer
On Wed, Jan 15, 2014 at 03:32:19PM +0100, Hans de Goede wrote: Factor this code out into functions so that it can be re-used for the systemd-logind device pause/resume paths. Signed-off-by: Hans de Goede hdego...@redhat.com I'd probably rename these to xf86VTDisableDevice to have a slightly

Re: [PATCH 07/12] hotplug: Modify OdevAttributes for server-managed fd support

2014-01-27 Thread Peter Hutterer
On Wed, Jan 15, 2014 at 03:32:21PM +0100, Hans de Goede wrote: With systemd-logind support, the xserver, rather then the drivers will be typo, than responsible for opening/closing the fd for drm nodes. The initial open will happen on probe from config/udev.c, this commit adds a fd member

Re: [PATCH 08/12] systemd-logind: Add systemd-logind core

2014-01-27 Thread Peter Hutterer
On Wed, Jan 15, 2014 at 03:32:22PM +0100, Hans de Goede wrote: This commits add the bulk of the systemd-logind integration code, but does not hook it up yet other then calling its init and fini functions, which don't do that much. Signed-off-by: Hans de Goede hdego...@redhat.com ---

Re: [PATCH 08/12] systemd-logind: Add systemd-logind core

2014-01-27 Thread David Herrmann
Hi Peter On Tue, Jan 28, 2014 at 8:15 AM, Peter Hutterer peter.hutte...@who-t.net wrote: On Wed, Jan 15, 2014 at 03:32:22PM +0100, Hans de Goede wrote: This commits add the bulk of the systemd-logind integration code, but does not hook it up yet other then calling its init and fini functions,

Re: signed tar files

2014-01-27 Thread Alan Coopersmith
On 01/25/14 12:30 PM, Julien Cristau wrote: On Sat, Jan 25, 2014 at 10:46:03 -0800, Alan Coopersmith wrote: On 01/25/14 07:09 AM, Claus Assmann wrote: On Sat, Jan 25, 2014, Julien Cristau wrote: gpg: BAD signature from Alex Deucher alexdeuc...@gmail.com Same here. If this isn't just me,