Re: ~500 wakeups/sec with xorg-input-synaptics

2013-03-12 Thread Peter Hutterer
On Sat, Mar 09, 2013 at 11:07:12PM +1100, Will Rouesnel wrote: I've been noticing lately that my laptop is (Dell L501x) is producing a truly staggering number of wakeups when I use the touchpad - ~500 or so per second when the touchpad is moved. I'm using the 1.6.2-1 version of the

X not starting on Tegra Harmony

2013-03-12 Thread Satya Swaroop Damarla
Hi Guys, I have a problem which may be small and simple but for the moment its keeping me on pins and needles. I have a board which is a special version of Tegra Harmony board from NVIDIA Tegra. I am using OpenYocto project to create a image and rootfs for the board. I successfully build

Re: X not starting on Tegra Harmony

2013-03-12 Thread Satya Swaroop Damarla
I thought a better way to represent my problem and I did X-verbose and I had the following output... and after that its freezing... X -verbose _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 _XSERVTransOpen: transport open failed for inet6/skidata-harmony:0

XInput 2.1 valuator values when resuming from SlaveSwitch

2013-03-12 Thread Paul Vojta
Dear all: I've been working on adding smooth scrolling to xdvi (after a long hiatus), and I'm encountering some glitches when switching pointer devices. Specifically, when a slave is being switched back on, the scroll valuators are always reported as having value 0 in the classes field of the

Re: XInput 2.1 valuator values when resuming from SlaveSwitch

2013-03-12 Thread Peter Hutterer
On Tue, Mar 12, 2013 at 12:53:33PM -0700, Paul Vojta wrote: Dear all: I've been working on adding smooth scrolling to xdvi (after a long hiatus), and I'm encountering some glitches when switching pointer devices. Specifically, when a slave is being switched back on, the scroll valuators

Re: glamor with xserver 1.12

2013-03-12 Thread Chris Wilson
On Mon, Mar 11, 2013 at 07:23:52PM +0100, Michel Dänzer wrote: On Mon, 2013-03-11 at 00:25 +0400, Alex B wrote: I need working glamor to get 3d acceleration on my video card (Radeon HD 7700) My current distribution Arch Linux provides xserver 1.13 and about to move on 1.14. Only

[PATCH] configure.ac: Require inputproto 2.3

2013-03-12 Thread Robert Morell
This picks up support for Xi pointer barriers in the protocol. Signed-off-by: Robert Morell rmor...@nvidia.com --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6e1ff65..44982b3 100644 --- a/configure.ac +++ b/configure.ac @@

[PATCH] list.h: Make xorg_list_init inline

2013-03-12 Thread Robert Morell
Otherwise this file is emitted in every unit that includes it. Signed-off-by: Robert Morell rmor...@nvidia.com --- This reduces the size of a debug Xorg binary on my system by just under 1%. include/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/list.h

Re: glamor with xserver 1.12

2013-03-12 Thread Alex B
2013/3/11 Michel Dänzer mic...@daenzer.net: I think it would be better to install libglamor.so in the normal lib directory. Can you submit a glamor patch or bug report for that? Yes, this helps. Autotools are too cryptic for me, so I just filled a bug report.

Re: [PATCH] list.h: Make xorg_list_init inline

2013-03-12 Thread Jamey Sharp
Seems like a good plan to me. Reviewed-by: Jamey Sharp ja...@minilop.net On Tue, Mar 12, 2013 at 09:40:16AM -0700, Robert Morell wrote: Otherwise this file is emitted in every unit that includes it. Signed-off-by: Robert Morell rmor...@nvidia.com --- This reduces the size of a debug Xorg

Re: [PATCH] configure.ac: Require inputproto 2.3

2013-03-12 Thread Peter Hutterer
On Tue, Mar 12, 2013 at 09:37:43AM -0700, Robert Morell wrote: This picks up support for Xi pointer barriers in the protocol. Signed-off-by: Robert Morell rmor...@nvidia.com --- thanks, applied. Cheers, Peter configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [PATCH] GLX/DRI2: Do not expose INTEL_swap_event without swap control

2013-03-12 Thread Zack Rusin
Swap events depent on the implementation of ScheduleSwap. By unconditionally enabling GLX_INTEL_swap_event we're breaking the system with drivers that don't support it because the apps are forever stuck waiting for an event that will never be delivered. So lets enable the extension only if

Re: [PATCH] list.h: Make xorg_list_init inline

2013-03-12 Thread Peter Hutterer
On Tue, Mar 12, 2013 at 09:40:16AM -0700, Robert Morell wrote: Otherwise this file is emitted in every unit that includes it. Signed-off-by: Robert Morell rmor...@nvidia.com merged, thanks Cheers, Peter --- This reduces the size of a debug Xorg binary on my system by just under 1%.

[PULL] compiler fix for 1.14, misc other

2013-03-12 Thread Peter Hutterer
The following changes since commit 5047810a4c20fab444b8c6eb146c55dcdb0d4219: fb: Rename wfbDestroyGlyphCache (2013-03-07 18:20:18 -0800) are available in the git repository at: git://people.freedesktop.org/~whot/xserver for-keith for you to fetch changes up to

[PATCH 1/2] glamor: Bail if the glamoregl module wasn't loaded early

2013-03-12 Thread Michel Dänzer
From: Michel Dänzer michel.daen...@amd.com Trying to initialize glamor in that case crashes. Signed-off-by: Michel Dänzer michel.daen...@amd.com --- src/radeon_glamor.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/src/radeon_glamor.c b/src/radeon_glamor.c index 5a7561f..ef7d95c

[PATCH 2/2] glamor: Enable by default on SI

2013-03-12 Thread Michel Dänzer
From: Michel Dänzer michel.daen...@amd.com We should now handle its major initialization failure cases gracefully. Signed-off-by: Michel Dänzer michel.daen...@amd.com --- man/radeon.man | 2 ++ src/radeon_glamor.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git