Re: [PATCH] dix: a valuator count of 0 is valid (#34510)

2011-02-21 Thread Timo Aaltonen
peter.hutte...@who-t.net Thanks! Mumble works now. Tested-by: Timo Aaltonen timo.aalto...@canonical.com ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel

[PATCH joystick] Remove old input ABI leftovers from jstkCoreUnInit

2011-03-18 Thread Timo Aaltonen
From: Timo Aaltonen timo.aalto...@canonical.com Fixes crashes on device unplug: https://bugs.freedesktop.org/show_bug.cgi?id=35391 Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/jstk.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/src/jstk.c b

Re: [PATCH joystick] Remove old input ABI leftovers from jstkCoreUnInit

2011-03-22 Thread TImo Aaltonen
On 22.03.2011 08:42, Peter Hutterer wrote: On Fri, Mar 18, 2011 at 07:13:38PM +0200, Timo Aaltonen wrote: From: Timo Aaltonen timo.aalto...@canonical.com Fixes crashes on device unplug: https://bugs.freedesktop.org/show_bug.cgi?id=35391 Signed-off-by: Timo Aaltonen timo.aalto

[PATCH joystick] Fix crashes on unplug due to double-free with ABI 12.

2011-03-22 Thread Timo Aaltonen
From: Timo Aaltonen timo.aalto...@canonical.com With ABI 12 and newer the server removes devices hotplugged through the driver. And pInfo-private is shared between the keyboard device and actual one, so these combined mean there's a double-free which would result in a server crash on unplug

[PATCH sis 04/15] Fix suggest parentheses around operand of ‘!’ compiler warnings.

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_cursor.c |2 +- src/sis_utility.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sis_cursor.c b/src/sis_cursor.c index 13eddc4..67a3402 100644 --- a/src/sis_cursor.c +++ b/src/sis_cursor.c

[PATCH sis 00/15] a bunch of cleanups, and a taste of things to come

2011-04-06 Thread Timo Aaltonen
the code more readable, among other things. Every commit is build-tested against xserver 1.10 headers. * http://www.winischhofer.net/linuxsispart4.shtml#download Timo Aaltonen (15): Write out remaining IS_SIS* macros. Replace deprecated x(c)alloc/xfree with m/calloc/free Fix format

[PATCH sis 03/15] Fix format not a string literal and no format arguments compile warnings

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_driver.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sis_driver.c b/src/sis_driver.c index 8ce1cdd..337bba6 100644 --- a/src/sis_driver.c +++ b/src/sis_driver.c @@ -403,14 +403,14

[PATCH sis 02/15] Replace deprecated x(c)alloc/xfree with m/calloc/free

2011-04-06 Thread Timo Aaltonen
and xrealloc with realloc. Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/initextx.c | 18 src/sis6326_video.c |6 +- src/sis_dga.c |6 +- src/sis_dri.c | 24 +- src/sis_driver.c| 128

[PATCH sis 01/15] Write out remaining IS_SIS* macros.

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/init.c| 35 +-- src/init301.c | 48 src/initdef.h | 19 +-- 3 files changed, 50 insertions(+), 52 deletions(-) diff --git

[PATCH sis 06/15] Declare mmioFlags only if XSERVER_LIBPCIACCESS isn't defined

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_driver.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/sis_driver.c b/src/sis_driver.c index 337bba6..61fd515 100644 --- a/src/sis_driver.c +++ b/src/sis_driver.c @@ -7103,7 +7103,9 @@ static Bool

[PATCH sis 05/15] Fix compile warnings of uninitialized variables

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_utility.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/sis_utility.c b/src/sis_utility.c index 0892cf5..0e9dc5b 100644 --- a/src/sis_utility.c +++ b/src/sis_utility.c @@ -1550,7 +1550,9

[PATCH sis 09/15] Drop unused and non-working XAA trapezoid support for 310 series and later

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis310_accel.c | 176 1 files changed, 0 insertions(+), 176 deletions(-) diff --git a/src/sis310_accel.c b/src/sis310_accel.c index befb095..26c4c00 100644 --- a/src

[PATCH sis 07/15] Purge obsolete and unused SIS_CP checks

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/init.h |3 --- src/init301.c| 14 -- src/init301.h|3 --- src/sis.h| 11 --- src/sis_driver.c | 12 src/sis_opt.c| 16 src/sis_video.c

[PATCH sis 08/15] Drop useless checks and relevant code for old XFree86 releases

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis.h | 11 src/sis310_accel.c | 42 --- src/sis6326_video.c | 54 src/sis_cursor.c|6 src/sis_dri.c | 14

[PATCH sis 10/15] Remove unused code from sis_video.c

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis310_accel.c | 536 src/sis_accel.c| 128 - 2 files changed, 0 insertions(+), 664 deletions(-) diff --git a/src/sis310_accel.c b/src/sis310_accel.c index

[PATCH sis 14/15] Move configurable values from sis.h to sis_config.h

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis.h| 40 +- src/sis_config.h | 71 ++ 2 files changed, 72 insertions(+), 39 deletions(-) create mode 100644 src/sis_config.h diff --git

[PATCH sis 11/15] Remove unused code from SISPutImageBlit()

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_video.c | 66 --- 1 files changed, 0 insertions(+), 66 deletions(-) diff --git a/src/sis_video.c b/src/sis_video.c index 9859f33..17d8f71 100644 --- a/src/sis_video.c +++ b

[PATCH sis 12/15] Remove unused non-working Xv deinterlacer code

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis.h |7 -- src/sis_video.c| 55 src/sis_video.h|9 src/sis_videostr.h |3 -- 4 files changed, 0 insertions(+), 74 deletions(-) diff

[PATCH sis 13/15] Remove deprecated XV SD interface

2011-04-06 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis.h | 17 -- src/sis_utility.c | 515 - src/sis_video.c | 71 src/sis_video.h | 180 --- 4 files changed, 0 insertions(+), 783

Re: [PATCH sis 04/15] Fix suggest parentheses around operand of ‘!’ compiler warnings.

2011-04-07 Thread TImo Aaltonen
On 06.04.2011 23:14, Mark Kettenis wrote: From: Timo Aaltonen tjaal...@ubuntu.com Date: Wed, 6 Apr 2011 19:50:06 +0300 Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_cursor.c |2 +- src/sis_utility.c |2 +- 2 files changed, 2 insertions(+), 2 deletions

[PATCH sis v2 04/15] Fix suggest parentheses around operand of ‘!’ compiler warnings.

2011-04-07 Thread Timo Aaltonen
Signed-off-by: Timo Aaltonen timo.aalto...@canonical.com --- src/sis_cursor.c |2 +- src/sis_utility.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Fix the logic, as pointed out by Mark Kettenis. diff --git a/src/sis_cursor.c b/src/sis_cursor.c index 13eddc4..67a3402 100644

Re: [PATCH sis 00/15] a bunch of cleanups, and a taste of things to come

2011-04-13 Thread TImo Aaltonen
On 06.04.2011 19:50, Timo Aaltonen wrote: Here's a first set of patches to xf86-video-sis, hoping to narrow down the diff against Thomas Winischofer's 'sisfree' (*) package and the forked versions from Intel and SiS (and Mandriva). The first 13 are more or less self-explanatory, but the two

Re: [PATCH sis 00/15] a bunch of cleanups, and a taste of things to come

2011-04-27 Thread TImo Aaltonen
On 13.04.2011 18:22, TImo Aaltonen wrote: On 06.04.2011 19:50, Timo Aaltonen wrote: Here's a first set of patches to xf86-video-sis, hoping to narrow down the diff against Thomas Winischofer's 'sisfree' (*) package and the forked versions from Intel and SiS (and Mandriva). The first 13

Re: [PATCH] Revert composite: Don't backfill non-bg-None windows

2011-05-31 Thread TImo Aaltonen
alexdeuc...@gmail.com Looks like this has gone unnoticed, still not in master and therefore unable to propose it for 1.10-branch. Acked-by: Timo Aaltonen timo.aalto...@canonical.com --- composite/compalloc.c | 26 -- 1 files changed, 0 insertions(+), 26 deletions

Re: [ANNOUNCE] xorg-server 1.7.99.902

2010-03-24 Thread Timo Aaltonen
, thanks Rüdiger! :) just what I've been missing since xorg.conf.d was pushed.. backported all of x.c.d/inputclass/etc on top of 1.7.6 and it seems to work great. -- Timo Aaltonen Systems Specialist IT Services, Aalto University School of Science and Technology

Re: [ANNOUNCE] xorg-server 1.7.99.902

2010-03-25 Thread Timo Aaltonen
of 1.7.x? I have, and it doesn't crash there.. tried on my laptop with intel, and it loads vesa and fbdev as well. -- Timo Aaltonen Systems Specialist IT Services, Aalto University School of Science and Technology ___ xorg-devel@lists.x.org: X.Org

Re: [ANNOUNCE] xorg-server 1.7.99.902

2010-03-25 Thread Timo Aaltonen
On Thu, 25 Mar 2010, Timo Aaltonen wrote: On Thu, 25 Mar 2010, Ruediger Oertel wrote: On Thursday 25 March 2010 20:45:27 Timo Aaltonen wrote: On Thu, 25 Mar 2010, Ruediger Oertel wrote: Do you have any backtrace information? sure ... Program received signal SIGSEGV, Segmentation fault

Re: libX11 and xcb

2010-04-09 Thread Timo Aaltonen
://bugzilla.freedesktop.org/show_bug.cgi?id=27552 though it probably should've been upstreamed earlier, my bad for assuming it was a dupe of the libXext related crasher. The component might still be wrong, adjust if needed. Other than that it has been quite stable. -- Timo Aaltonen Systems Specialist

Re: libX11 and xcb

2010-04-10 Thread Timo Aaltonen
On Sat, 10 Apr 2010, Jamey Sharp wrote: On Fri, Apr 9, 2010 at 2:49 PM, Timo Aaltonen timo.aalto...@aalto.fi wrote: On Fri, 9 Apr 2010, Jamey Sharp wrote: I may not have a complete picture of support issues, though. Ubuntu apparently fails to send XCB-related bug reports upstream, for example

Re: [PATCH sis 00/15] a bunch of cleanups, and a taste of things to come

2011-10-30 Thread Timo Aaltonen
30.10.2011 15:27, Jeremy Huddleston kirjoitti: Wow, I wish I knew about this series before I started cleaning up the drivers... Where was this series sent? I don't see it in my xorg-devel log. Looks like it was on 6th of April. I got an ack from Dave to just push it sometime in May, but

Re: Problem with touchscreen events and grabs

2012-10-22 Thread Timo Aaltonen
On 22.10.2012 09:47, Peter Hutterer wrote: On Tue, Oct 16, 2012 at 09:54:23PM -0400, Thomas Jaeger wrote: I've noticed an issue with grabs as well, not sure if it's related to this one. It's really easy to reproduce, though: All you need is a little test client that passively grabs button 1

Re: [PULL 1.13 v2] input fixes and video ABI 13.1

2012-10-25 Thread Timo Aaltonen
On 12.10.2012 09:35, Peter Hutterer wrote: On Fri, Oct 12, 2012 at 12:14:21AM -0600, Matt Dew wrote: Ack'd. Are there any bugzilla tickets (fdo or other?) related to this? https://bugs.freedesktop.org/show_bug.cgi?id=55752 is the one for the ABI bump though it may be a bit sparse.

[PATCH] Fix kwin crashes on xrandr update on NX

2013-02-06 Thread Timo Aaltonen
https://bugs.freedesktop.org/show_bug.cgi?id=59795 Signed-off-by: Ritesh Khadgaray khadga...@gmail.com Reviewed-by: Peter Hutterer peter.hutte...@who-t.net --- src/Xrandr.c |4 1 file changed, 4 insertions(+) diff --git a/src/Xrandr.c b/src/Xrandr.c index b1e97ec..9a56636 100644 ---

Re: BCM5974 touchpad issues...

2013-02-12 Thread Timo Aaltonen
On 12.02.2013 09:32, Daniel J Blueman wrote: On 12 February 2013 12:47, Peter Hutterer peter.hutte...@who-t.net wrote: please don't send out 4 emails for the same issue. My apologies; posting, subscribing and resubscribing to the right mailing list with you CCd was racing with quick moderator

Re: [PATCH] Fix kwin crashes on xrandr update on NX

2013-06-17 Thread Timo Aaltonen
On 06.03.2013 17:19, Timo Aaltonen wrote: https://bugs.freedesktop.org/show_bug.cgi?id=59795 Signed-off-by: Ritesh Khadgaray khadga...@gmail.com Reviewed-by: Peter Hutterer peter.hutte...@who-t.net --- src/Xrandr.c |4 1 file changed, 4 insertions(+) diff --git a/src

Re: [PULL 1.14] touch fixes, backported

2013-08-12 Thread Timo Aaltonen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 17.07.2013 08:27, Peter Hutterer wrote: I admit this is a huge set of patches but it's needed. Mostly prompted by 56578 it fixes a number of things wrong with the touch implementation as shipped in 1.12-1.14, fixing a few race conditions, a few

Re: [PULL 1.14] touch fixes, backported

2013-08-12 Thread Timo Aaltonen
On 13.08.2013 07:20, Matt Dew wrote: On 08/12/2013 02:52 PM, Peter Hutterer wrote: On Mon, Aug 12, 2013 at 02:12:02PM +0300, Timo Aaltonen wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 17.07.2013 08:27, Peter Hutterer wrote: I admit this is a huge set of patches but it's needed

Re: [PATCH] config/udev: do not remove devices on add udev events

2014-01-09 Thread Timo Aaltonen
...@canonical.com Reviewed-by: Timo Aaltonen timo.aalto...@canonical.com -- t ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel

Re: [PATCH 1/1] randr: make RROutputChanged change the main protocol screen not the gpu screen

2015-07-07 Thread Timo Aaltonen
On 14.01.2014 00:37, Alberto Milone wrote: On 16/12/13 09:52, Alberto Milone wrote: On 12/12/13 10:00, Alberto Milone wrote: We only set changes on the main protocol screen as, for example in RRSetChanged() and RRTellChanged(), therefore we should follow the same logic when reporting that an

Re: [PATCH xserver] randr: Do not check the screen size bound for gpu screens

2016-05-26 Thread Timo Aaltonen
On 20.05.2016 08:00, Nikhil Mahale wrote: > For gpu screen, CrtcSet set/adjust the master screen size along > mode in following callstack - > > ProcRRSetCrtcConfig() > | > -> RRCrtcSet() > | > -> rrCheckPixmapBounding() > | > ->

Re: [PATCH xserver] randr: Do not check the screen size bound for gpu screens

2016-05-26 Thread Timo Aaltonen
On 26.05.2016 11:21, Nikhil Mahale wrote: > On 05/26/2016 01:31 PM, Timo Aaltonen wrote: >> On 20.05.2016 08:00, Nikhil Mahale wrote: >>> For gpu screen, CrtcSet set/adjust the master screen size along >>> mode in following callstack - >>> >>> ProcRRS

[PATCH xserver] dri2: Sync i915_pci_ids.h and i965_pci_ids.h from mesa

2016-01-27 Thread Timo Aaltonen
Adds Skylake, Kabylake and Broxton allowing them to use modesetting + glamor with dri2. Signed-off-by: Timo Aaltonen <timo.aalto...@canonical.com> --- hw/xfree86/dri2/pci_ids/i915_pci_ids.h | 4 +-- hw/xfree86/dri2/pci_ids/i965_pci_ids.h | 56 +++--- 2 files c

Re: [PATCH xserver 2/2] glamor: Source pictures are always depth 32

2016-03-10 Thread Timo Aaltonen
08.03.2016, 22:18, Adam Jackson kirjoitti: > On Tue, 2016-02-23 at 17:19 +0900, Michel Dänzer wrote: >> From: Michel Dänzer >> >> We were using the destination pixmap depth to determine the source >> picture format. >> >> Fixes incorrect text rendering with some MATE

Re: [PATCH] Fix XineramaQueryScreens for reverse prime

2016-03-10 Thread Timo Aaltonen
09.02.2016, 00:23, Adam Jackson kirjoitti: > On Mon, 2016-02-08 at 14:17 +1000, Dave Airlie wrote: >> On 4 February 2016 at 23:06, Jan Burgmeier >> wrote: >>> Bugzilla: https://bugs.freedesktop.org/92313 >> >> Reviewed-by: Dave Airlie >> >>

Re: [PATCH] glamor: swizzle RED to 0 for alpha textures.

2016-03-15 Thread Timo Aaltonen
ttps://bugs.freedesktop.org/show_bug.cgi?id=94554 > Signed-off-by: Dave Airlie <airl...@redhat.com> works great, thanks Tested-by: Timo Aaltonen <tjaal...@ubuntu.com> -- t ___ xorg-devel@lists.x.org: X.Org development Archives: http://l

Re: [PATCH xserver] randr: Do not check the screen size bound for gpu screens

2016-08-31 Thread Timo Aaltonen
Any update on this? On 20.06.2016 20:27, Hans de Goede wrote: > Hi, > > On 20-06-16 18:32, Nikhil Mahale wrote: >> Sorry for late reply, Hans. See inline - >> >> On 06/13/2016 10:36 PM, Hans de Goede wrote: >>> Hi, >>> >>> On 20-05-16 07:00, Nikhil Mahale wrote: For gpu screen, CrtcSet

Re: Proposed X server 1.19 schedule

2016-09-13 Thread Timo Aaltonen
On 09.09.2016 20:18, Aaron Plattner wrote: > On 09/06/2016 12:27 PM, Keith Packard wrote: >> Adam Jackson writes: >> >>> ... move the non-critical bug deadline to 2016-10-01? Still leaves >>> three weeks for critical fixes. Either way, looks plausible to me. I >>> don't personally

Re: [Spice-devel] [PATCH xf86-video-qxl] Adjust xspice_wakeup_handler() prototype for building xspice with server 1.19

2016-11-18 Thread Timo Aaltonen
On 04.10.2016 14:41, Hans de Goede wrote: > Hi, > > On 03-10-16 12:04, Christophe Fergeau wrote: >> >> >> On Thu, Sep 29, 2016 at 01:03:01PM +0200, Hans de Goede wrote: >>> Signed-off-by: Hans de Goede >>> --- >>> src/spiceqxl_main_loop.c | 4 >>> 1 file changed, 4

[PATCH xserver] dri2: Sync i965_pci_ids.h from mesa

2016-11-02 Thread Timo Aaltonen
Skylake renderer strings 644c8a515192d28 i965/skl: Add two missing device IDs Signed-off-by: Timo Aaltonen <tjaal...@ubuntu.com> --- hw/xfree86/dri2/pci_ids/i965_pci_ids.h | 32 +--- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/hw/xfree86/dri2/p

Re: [PATCH xserver] modesetting: Honor xorg.conf for 16bpp

2017-03-23 Thread Timo Aaltonen
On 21.03.2017 21:57, Adam Jackson wrote: > The 32->24 support patch messed this up. > > Bugzilla: https://bugs.freedesktop.org/100246 > Bugzilla: https://bugs.freedesktop.org/100295 > Signed-off-by: Adam Jackson 'xinit -- -depth 16' still doesn't work, but xorg.conf does. --

[PATCH 4/4] dix: Resize touch event history if the array is filled up

2017-03-16 Thread Timo Aaltonen
From: Maarten Lankhorst Signed-off-by: Maarten Lankhorst --- dix/touch.c | 18 -- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/dix/touch.c b/dix/touch.c index 37902bd..efc7ef9 100644 --- a/dix/touch.c

[PATCH 2/4] xfree86: Only set RR caps that are appropriate to main/gpu screen.

2017-03-16 Thread Timo Aaltonen
From: Maarten Lankhorst Ubuntu bug https://launchpad.net/bugs/1277014 Signed-off-by: Maarten Lankhorst --- hw/xfree86/modes/xf86RandR12.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

[PATCH 1/4] xfree86: Don't bother probing -nv on Linux

2017-03-16 Thread Timo Aaltonen
From: Timo Aaltonen <tjaal...@debian.org> For linux this driver is long obsolete now. It may have some relevance on non-linux systems. Signed-off-by: Timo Aaltonen <tjaal...@ubuntu.com> --- hw/xfree86/common/xf86pciBus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) dif

[PATCH 3/4] xfree86: Do not bother registering xv/xvmc on gpu screens

2017-03-16 Thread Timo Aaltonen
From: Maarten Lankhorst Signed-off-by: Maarten Lankhorst --- hw/xfree86/common/xf86xv.c | 2 +- hw/xfree86/common/xf86xvmc.c | 10 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/hw/xfree86/common/xf86xv.c

[PATCH xserver 0/4] Patches from Ubuntu

2017-03-16 Thread Timo Aaltonen
Timo Aaltonen (1): Don't bother probing -nv on Linux dix/touch.c| 18 -- hw/xfree86/common/xf86pciBus.c | 3 ++- hw/xfree86/common/xf86xv.c | 2 +- hw/xfree86/common/xf86xvmc.c | 10 +++--- hw/xfree86/modes/xf86RandR12.c | 8 +++- 5 files

Re: [PATCH xserver v3] autobind GPUs to the screen

2017-03-16 Thread Timo Aaltonen
onfig in randr/rrprovider.c, looking at > rrScrPriv->provider, rather then in hw/xfree86/modes/xf86Crtc.c > looking at xf86CrtcConfig->provider. This fixes the autoconfig not > working with the nvidia binary driver Tested-by: Timo Aaltonen <tjaal...@ubuntu.com> Ubuntu has had t

[PATCH xf86-video-siliconmotion] Stop accessing the attribute array using the attribute name enum.

2017-03-09 Thread Timo Aaltonen
From: Robert Ancell The array has only two elements but the clamping code was assuming it contained all the elements in order. This means no clamping is now done but at least it wont read off the end of the array. Signed-off-by: Robert Ancell

[PATCH] Fix build against xorg server 1.17 on certain architectures

2017-03-09 Thread Timo Aaltonen
From: Maarten Lankhorst Fixes at least arm64, likely also hppa, m68k, sh4. Signed-off-by: Maarten Lankhorst --- src/regsmi.h | 18 ++ src/smi.h | 2 ++ src/smi_driver.c | 19 +--

Re: [PATCH xf86-video-siliconmotion] Fix build against xorg server 1.17 on certain architectures

2017-03-09 Thread Timo Aaltonen
bah, this is for xf86-video-siliconmotion -- t ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: https://lists.x.org/mailman/listinfo/xorg-devel

Re: Pull request for server-1.19.branch fixes ?

2017-10-01 Thread Timo Aaltonen
On 21.09.2017 17:21, Olivier Fourdan wrote: > Hi all, > > It appears the Xserver in 1.19 branch is missing quite a few fixes from > master, so I prepared a branch back-porting fixes at Hi, please add this to the list: commit fbd80b2c8ebe9fd41229dc5438524d107c071ff1 Author: Dawid Kurek

[PULL] branch for 1.19.7

2018-02-13 Thread Timo Aaltonen
Hi So here's a branch with the OutputClass commits backported, plus one animcur commit which was missing from the others that already got cherry-picked? (and I got asked to backport for Ubuntu..) The following changes since commit 56547b196660e246e37132960723819972b99c8c: glx: Only

Re: [PULL] branch for 1.19.7

2018-02-13 Thread Timo Aaltonen
Adam Jackson kirjoitti 13.02.2018 klo 22:55: > On Tue, 2018-02-13 at 17:44 +0200, Timo Aaltonen wrote: >> Hi >> >> So here's a branch with the OutputClass commits backported, plus one animcur >> commit which was missing from the others that already got cherry-

Re: [PATCH xserver] glx: Only assign 8 bpc fbconfigs for composite visuals.

2018-02-09 Thread Timo Aaltonen
On 07.02.2018 16:18, Mario Kleiner wrote: > On 02/06/2018 08:04 PM, Adam Jackson wrote: >> On Mon, 2018-02-05 at 11:25 +0100, Thomas Hellstrom wrote: >>> On 02/05/2018 11:20 AM, Mario Kleiner wrote: Commit 91c42093b248 ("glx: Duplicate relevant fbconfigs for compositing visuals") adds

Re: [PULL] branch for 1.19.7

2018-02-15 Thread Timo Aaltonen
On 14.02.2018 18:54, Adam Jackson wrote: > On Tue, 2018-02-13 at 23:53 +0200, Timo Aaltonen wrote: >> Adam Jackson kirjoitti 13.02.2018 klo 22:55: >>> On Tue, 2018-02-13 at 17:44 +0200, Timo Aaltonen wrote: >>>> >>>> xfree86: Add options suppor

Re: [PATCH xserver 0/3] Use DRM GetFB2 ioctl

2019-11-20 Thread Timo Aaltonen
On 23.3.2018 15.50, Daniel Stone wrote: > Hi, > This short patchset makes modesetting use the shiny, new, and completely > not at all merged GetFB2 DRM ioctl: > https://lists.freedesktop.org/archives/dri-devel/2018-March/170512.html > > When starting Xorg with -background none, it uses GetFB to

Re: RFC: Minimum meson version for xserver 20

2020-03-31 Thread Timo Aaltonen
On 30.3.2020 18.42, Michel Dänzer wrote: > On 2020-03-30 5:23 p.m., Adam Jackson wrote: >> Does anyone have strong opinions on this? I would really like to bump >> to at least 0.49 for the position-independent executable support. If >> not that, 0.47 gives us 'feature' support for build options,