Re: [PATCH libpciaccess] PCI: set correct mask value when matching for bridges.

2012-12-12 Thread Guillem Jover
On Wed, 2012-12-05 at 12:30:11 -0500, Egbert Eich wrote: The mask must not be zero otherwise the matching condition will never be true: ((val mask) == set). Signed-off-by: Egbert Eich e...@freedesktop.org --- src/common_bridge.c |4 +++- 1 files changed, 3 insertions(+), 1

Re: [PATCH] xfree86/hotplug: cleanup properly if the screen fails to initialise

2012-12-12 Thread Aaron Plattner
On 12/11/2012 08:14 PM, Dave Airlie wrote: From: Dave Airlie airl...@redhat.com Due to another bug, the modesetting/udl driver would fail to init properly on hotplug, when it did the code didn't clean up properly, and on removing the device the server could crash. Found in F18 testing.

Re: [PATCH] linux: Prefer ioctl(KDSKBMUTE, 1) over ioctl(KDSKBMODE, K_OFF)

2012-12-12 Thread Arthur Taylor
Setting the KDSKBMODE on a VT which X is running is never a good idea. This is an issue that needs resolution in systemd. The thought behind reusing KDSKBMODE for disabling keyboard input is that it doesn't break xf86-input-kbd and SysRq-R still functions. -Art

Re: [PATCH] xfree86: print message to the log when zapping the server

2012-12-12 Thread Aaron Plattner
Peter reminded me that this is not called from a signal handler. Reviewed-by: Aaron Plattner aplatt...@nvidia.com -- Aaron On 12/11/2012 05:02 PM, Peter Hutterer wrote: Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- hw/xfree86/common/xf86Events.c | 1 + 1 file changed, 1

[PATCH] Xi: don't use devices after removing them

2012-12-12 Thread Peter Hutterer
RemoveDevice() frees the DeviceIntPtr, we shouldn't use the pointer after that Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- Xi/xichangehierarchy.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Xi/xichangehierarchy.c b/Xi/xichangehierarchy.c index

xserver 1.13.1-rcs any issues?

2012-12-12 Thread Matt Dew
Hi all, Tomorrow is scheduled the maintenance release of xserver 1.13.1. Has anyone found any issues with any of the RCs? thanks, Matt ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info:

[PATCH 0/3] per-device pointer barrier event handling

2012-12-12 Thread Peter Hutterer
These are the promised fixes for pointer-barrier events if there is more than master pointer, plus a fix to avoid accessing recently-freed memory (if a event is sent after a barrier is destroyed) Yesterday's series plus these three should conclude the pointer barrier event/release support.

[PATCH 1/3] Xi: fix per-device barrier handling

2012-12-12 Thread Peter Hutterer
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- Xi/xibarriers.c| 235 ++--- Xi/xibarriers.h| 3 + Xi/xichangehierarchy.c | 6 ++ 3 files changed, 195 insertions(+), 49 deletions(-) diff --git a/Xi/xibarriers.c

[PATCH 2/3] Xi: don't store the window pointer in barriers, store the window ID

2012-12-12 Thread Peter Hutterer
When a client shuts down and resources are being freed, the window may have been freed already, so accessing it to get the window ID is bad. Plus, we never care about the window anyway other than for stuffing it into the event. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net ---

[PATCH 3/3] Xi: if a MD is removed, send a barrier leave event (if applicable)

2012-12-12 Thread Peter Hutterer
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- Xi/xibarriers.c | 30 +- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/Xi/xibarriers.c b/Xi/xibarriers.c index 1714634..7b7b83f 100644 --- a/Xi/xibarriers.c +++ b/Xi/xibarriers.c @@ -714,12

Re: [PATCH] ephyr: Add -resizeable option

2012-12-12 Thread Peter Hutterer
On Tue, Dec 11, 2012 at 05:23:55PM +0100, Daniel Martin wrote: From: Daniel Martin daniel.mar...@secunet.com With this option passed, ephyr windows can be resized like normal windows on the fly, without the need of an explicit parent window. Signed-off-by: Daniel Martin