[Ubuntu-x-swat] [Bug 839808] Re: Intel Sandybridge crash that takes Kwin with it

2012-03-26 Thread Scott Kitterman
This particular bug is fixed in Precise:

mesa | 8.0.2-0ubuntu2 |   precise | source

If you are having similar symptoms, please file a new bug.

** Changed in: xserver-xorg-video-intel (Ubuntu Precise)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/839808

Title:
  Intel Sandybridge crash that takes Kwin with it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/839808/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 839808] Re: Intel Sandybridge crash that takes Kwin with it

2012-03-26 Thread Bryan
this may be related to a problem I am having with an i3 based laptop and
an external monitor. If I try to change the external monitor to
1900x1200, the system freezes and needs a power down to regain control.
lspci sees the intel video ("VGA compatible controller: Intel
Corporation Core Processor Integrated Graphics Controller (rev 02)") but
the system display details says unknown video. This started a few weeks
ago and continues to be a problem with the latest upgrade this morning
(3/26) for 12.04

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/839808

Title:
  Intel Sandybridge crash that takes Kwin with it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/839808/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 949641] Re: Installing both fglrx and fglrx-updates results in: error exit status 1 -"/etc/init.d/atieventsd exists during rc.d purge"

2012-03-26 Thread Kate Stewart
** Tags added: rls-mgr-p-tracking

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/949641

Title:
  Installing both fglrx and fglrx-updates results in:  error exit status
  1 -"/etc/init.d/atieventsd exists during rc.d purge"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/949641/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Sven Gothel
Thank you Chris for responding and describing the history and motivation
of the patch.

Regarding visibility, I read in the same tls paper, that global exposes the tls 
field[s] 
to the 'calling' library and executables as well, where the other models don't.
Hence I would be able to access them directly, shortcutting the API.

Sine I am very familiar w/ JOGL's multithreading and did a thorough analysis of 
the locking as well, I can almost guarantee - even though you never can be 100% 
certain,
that at least in this case we have no race condition.
I investigated the call trace w/ manual instrumentation (read: inserted 
fprintf(stderr, ..))
and the call sequence incl. their thread origin is as expected and good.
Besides, we do run lots of concurrent unit tests in our automated unit tests 
via jenkins
on different platforms and machines, where none leads to a deadlock or 
starvation.
This includes GL drivers of NV, AMD, IMG, AMD, .. and Mesa as well ofc.

In this analyzed case, we only have 3 active threads running.
T1 (Main-Thread), T2 (SharedResource-Thread) and T3 (AWT-EventDispatchThread 
EDT).
At the time T3 issues the 'freezing' context release, T2 and T1 are on the wait 
queue
doing nothing and also do not hold a current GL context.
This is described in my comment 1.
I am very confident here - the threads in this case are running sequentially,
impossible to cause a race condition.
BTW we also manage our Java side GLContext object, e.g. have Java side locking 
management implemented.

Even though I don't understand the root cause of the bug, due to my lack of 
knowledge 
about of the actual TLS assembler code - loading libGL on the 'early most' 
thread (T3 here) allows
proper execution of GLX on it. Hence it makes a difference on which thread the 
native library gets initialized.
I will prepare an easy to reproduce test case later.

I appreciate your reevaluation of the tls-global patch and hope it gets 
'aligned' with vanilla Mesa,
which doesn't have it included. We may then be able to remove our workaround.

Great stuff, thank you very much.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Chris Halse Rogers
My understanding is that the TLS model is entirely a performance
optimisation; it does not change the symbol's visibility.   Now, as per
the only non-source documentation of the Linux ELF TLS ABI I can find¹,
the all the thread-local symbols using the initial-exec model are
required to be known at initial execution, as they're allocated in a
static area that's only set up at initial load by the dynamic loader.
This obviously doesn't work if you try to dlopen a binary containing
symbols with the initial-exec TLS model.

Of course, this documentation is out of date, and libc has long had
support for loading some initial-exec TLS symbols after initial program
load - precisely for libGL, which wants both minimum overhead and a
small number of TLS symbols.

We had problems with this in Natty, where Mesa gained a dependency on
libstdc++, which also has some TLS symbols, and was causing crashes with
anything that tried to dlopen libGL and didn't already have a copy of
libstdc++ in the program image.  (That was bug 259219).

Now, this was allegedly an underlying libc bug that's been fixed; I was
under the impression that we'd dropped the tls patch when updating to
mesa 8.0 in Precise.  I'm now investigating whether we still need it.

I don't believe that the TLS patch is to blame for JOGL's issues; I
think it's more likely that it's exposing a race somewhere - a global-
dynamic symbol requires a couple more instructions (and potentially
extra memory accesses) to access, which would change the timing.

¹: http://www.akkadia.org/drepper/tls.pdf

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965822] Re: screen flashes in precise (unity)

2012-03-26 Thread Robert Hooker
*** This bug is a duplicate of bug 963093 ***
https://bugs.launchpad.net/bugs/963093

** This bug has been marked a duplicate of bug 963093
   Unity 5.8: Flickering and corruption on Unity UI elements

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965822

Title:
  screen flashes in precise (unity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965822/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965822] Re: screen flashes in precise (unity)

2012-03-26 Thread Li Li
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965822

Title:
  screen flashes in precise (unity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965822/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965822] [NEW] screen flashes in precise (unity)

2012-03-26 Thread Li Li
Public bug reported:

On Precise (installed from the latest daily live image after beta1), the
screen flashes on the areas where a repaint is ongoing. I suspect this
is caused by a bug inside X driver or Unity. Looks like the HW 2D/3D
operations doesn't get sync'ed well with SW operations.

I'm using an atom based netbook. And never met this on Oneiric.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic-pae 3.2.12
Uname: Linux 3.2.0-20-generic-pae i686
.tmp.unity.support.test.0:
 
ApportVersion: 1.95-0ubuntu1
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,snap,imgpng,move,regex,grid,place,session,gnomecompat,mousepoll,animation,expo,resize,wall,unitymtgrabhandles,ezoom,vpswitch,workarounds,fade,scale,unityshell]
CompositorRunning: compiz
Date: Tue Mar 27 08:18:38 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha i386 (20120325)
MachineType: TOSHIBA TOSHIBA NB205
ProcEnviron:
 TERM=xterm
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-20-generic-pae 
root=UUID=0a76b4d3-7c62-4a59-9d96-79f6231a7b3d ro quiet splash vt.handoff=7
SourcePackage: xserver-xorg-video-intel
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/30/2009
dmi.bios.vendor: TOSHIBA
dmi.bios.version: V1.70
dmi.board.name: KAVAA
dmi.board.vendor: TOSHIBA
dmi.board.version: 1.00
dmi.chassis.asset.tag: *
dmi.chassis.type: 10
dmi.chassis.vendor: TOSHIBA
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnTOSHIBA:bvrV1.70:bd09/30/2009:svnTOSHIBA:pnTOSHIBANB205:pvrPLL25U-009018:rvnTOSHIBA:rnKAVAA:rvr1.00:cvnTOSHIBA:ct10:cvrN/A:
dmi.product.name: TOSHIBA NB205
dmi.product.version: PLL25U-009018
dmi.sys.vendor: TOSHIBA
version.compiz: compiz 1:0.9.7.2-0ubuntu1
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug compiz-0.9 i386 precise ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965822

Title:
  screen flashes in precise (unity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965822/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Xerxes Rånby
** Tags added: oneiric precise

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Sven Gothel
Allow me to start a discussion about the motivation of the tls-global path 
113_fix_tls.diff
and pls correct me if I am wrong ... ofc.

[1] tls-global implies that all the tls fields are directly exposed to the 
other library or executable loading the 
tls-global exposed library.

[1.1] This is IMHO a very bad idea and API hooks shall expose and control it's 
access,
which actually is true in this case here (glX .. currentContext ..).

[1.2]  AFAIK history of the patch was to fix the use-case of loading libGL by 
another dynamic library
via dlopen .. etc. This seems to be broken now having a multithreading 
scenario, like JOGL.

[2] Vanilla Mesa8 does not use tls-global, but uses tls-initial-exec, which 
works fine w/ JOGL and
other use-cases on ArchLinux and other distributions.

It would be great to understand the original motivation and nature of this patch
and ofc whether the multithreading issue is a tls-global constraint or a bug.
The latter maybe generated by gcc .. but this is just a guess ofc.

In case tls-global is indeed not required at all and maybe even a security or 
stability risk,
I would vote for removing the offending patch.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 933504] Re: Xorg crashed with SIGABRT in __libc_message()

2012-03-26 Thread Colin D Bennett
I hit this crash with a fresh install (i.e., not upgraded from prior
release) 12.04 prerelease.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/933504

Title:
  Xorg crashed with SIGABRT in __libc_message()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/933504/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mesa (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965440] Re: Xorg freeze after connecting to external display

2012-03-26 Thread tririver
After recent update, the problem has gone. Now I can connect multi-head
without problem.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965440

Title:
  Xorg freeze after connecting to external display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965440/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] Re: Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Sven Gothel
Allow me to copy my analysis of this bug here
from https://jogamp.org/bugzilla/show_bug.cgi?id=566#c13

This bug affects all Mesa8 w/ the tls_model("global-dynamic") patch
enabled!

+++

Analysis of patch 113_fix_tls.diff and it's freezing impact:

+++
 extern __thread void *u_current_user
-__attribute__((tls_model("initial-exec")));
+__attribute__((tls_model("global-dynamic")));
+++

the above changes the TLS behavior of libGL.

Note: u_current_user reflects the current context
changed by glXMakeContextCurrent(..).

Phenomenon of AWT-EDT glXMakeContextCurrent() freeze:

[0] Java launches
[0.1] starts new AWT-EDT thread 
[0.2] starts main thread and hands over execution of main

[1] JOGL loads and initializes the libGL via 1st call of 
GLProfile.initSingleton()
incl. lib loading via dlopen() and symbol lookup etc.

[2] Step [1] kicks of the shared resource runner, which creates the very 1st
JOGL GL context while probing all profiles.

[3] At some point, AWT-EDT runs a JOGL Runnable:
[3.1] ctx = createContext()
[3.2] makeCurrent(dpy, read, write, ctx);
[3.3] makeCurrent(dpy, 0, 0, 0);  -> release context  *** Freeze ***

glx/glxcurrent.c/MakeContextCurrent():__glXSetCurrentContextNull()
glx/glxcurrent.c/__glXSetCurrentContextNull(): 
.._glapi_set_context(NULL);
./mapi/mapi/mapi_glapi.c/_glapi_set_context(NULL):u_current_set_user(NULL);
./mapi/mapi/u_current.c/u_current_set_user(NULL):.u_current_init();
./mapi/mapi/u_current.c/u_current_set_user(NULL): .u_current_user 
=(void *) ptr; * FREEZE ***

Mesa8 release-context implementation attempts to access the TLS
u_current_user 'field'.

For some reason, an already existing thread like AWT-EDT [0.1] cannot use 
libGL's global TLS [3]
when the latter was initialized by a later running thread [0.2] + [1].

Prove that this is the root cause can be made by it's remedies:

R1: Set java system property 'sun.java2d.opengl' to 'true', which loads and
uses libGL from the start.

R2: Load the libraries [1] from the AWT-EDT

+++

R2 is our workaround in JOGL and works fine w/ Ubuntu 12.04 & Mesa8

+++

Nevertheless, it is unclear whether the above behavior is intrinsic to 
tls_model("global-dynamic") and hence a restriction or other special
circumstances 
lead to an erroneous behavior.

Note:tls_model("initial-exec") works fine, i.e. w/o patch
113_fix_tls.diff


** Bug watch added: jogamp.org/bugzilla/ #566
   https://jogamp.org/bugzilla/show_bug.cgi?id=566

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965798] [NEW] Multithreaded tls_model("global-dynamic") glXMakeContextCurrent ___tls_get_addr () freeze/deadlock

2012-03-26 Thread Xerxes Rånby
Public bug reported:

Ubuntu mesa contains the patch 113_fix_tls.diff that triggers a freezing impact:
+++
 extern __thread void *u_current_user
-__attribute__((tls_model("initial-exec")));
+__attribute__((tls_model("global-dynamic")));
+++

JogAmp JOGL have triaged that this bug are introduced by this ubuntu local 
patch:
https://jogamp.org/bugzilla/show_bug.cgi?id=566

I am able to reproduce this bug using Ubuntu 11.10 + mesa 7.11
GL_VENDOR: X.Org
GL_RENDERER: Gallium 0.4 on AMD RV770
GL_VERSION: 2.1 Mesa 7.11

Testcase (large ~150mb)
wget http://processing.googlecode.com/files/processing-2.0a5-linux.tgz
tar zxvf processing-2.0a5-linux.tgz
cd processing-2.0a5
./processing
#open File->Examples... Pick Topics->Geometry-> double click on RGBCube
#run the sketch ctrl-r
#output below:

xranby@hp ~/processing-2.0a5 $ ./processing 
Info: XInitThreads() called for concurrent Thread support



Backtrace of the stalled window thread.

(gdb) bt
#0  0x00118e3f in pthread_mutex_lock ()
   from /lib/i386-linux-gnu/libpthread.so.0
#1  0x0058701b in ?? () from /lib/ld-linux.so.2
#2  0x0059781d in ___tls_get_addr () from /lib/ld-linux.so.2
#3  0x0305e558 in ?? () from /usr/lib/i386-linux-gnu/dri/libgallium.so
#4  0x0218e3be in dri_make_current ()
   from /usr/lib/i386-linux-gnu/dri/r600_dri.so
#5  0x0216b1bf in ?? () from /usr/lib/i386-linux-gnu/dri/r600_dri.so
#6  0x074e4b8d in ?? () from /usr/lib/i386-linux-gnu/mesa/libGL.so.1
#7  0x074bcb97 in glXMakeCurrentReadSGI ()
   from /usr/lib/i386-linux-gnu/mesa/libGL.so.1
#8  0x082f329a in 
Java_jogamp_opengl_x11_glx_GLX_dispatch_1glXMakeContextCurrent1(__complex 
__complex __complex __complex __complex) ()
   from 
/tmp/jogamp.tmp.cache_00/jln4751330094528893169/jln2305029403340098767/libjogl_desktop.so

** Affects: mesa (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/965798

Title:
  Multithreaded tls_model("global-dynamic") glXMakeContextCurrent
  ___tls_get_addr () freeze/deadlock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/965798/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 600178] Re: Screen tearing when dragging window, in videos and other large screen redraws (on nVidia GPU)

2012-03-26 Thread z
michal.gregor:

Sorry, my bad its sh not bash

# This file is sourced by Xsession(5), not executed.
# Setup nvidia settings

NVIDIASETTINGSRC="$HOME/.nvidia-settings-rc"
NVIDIASETTINGS=/usr/bin/nvidia-settings
NVIDIAMODULE="$(grep nvidia /proc/modules | cut -d ' ' -f 1)"

if [ "x$NVIDIAMODULE" = "xnvidia" -a \
 -x "$NVIDIASETTINGS" -a \
 -r "$NVIDIASETTINGSRC" ] ; then
$NVIDIASETTINGS --config="$NVIDIASETTINGSRC" --load-config-only
fi

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/600178

Title:
  Screen tearing when dragging window, in videos and other large screen
  redraws (on nVidia GPU)

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/600178/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965782] Re: Incorrect keyboard shortcuts Super + Tab

2012-03-26 Thread 7Azimuth
** Description changed:

- Incorrect keyboard shortcuts Super + Tab.
+ After pressing the keys Super + Tab, the programs will not open.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xorg 1:7.6+12ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
  Uname: Linux 3.2.0-20-generic x86_64
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 1.95-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  Date: Tue Mar 27 01:59:29 2012
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  MachineType: Hewlett-Packard HP ProBook 4730s
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-20-generic 
root=UUID=8bfa5d11-adbf-445c-8c6f-cf259d7b2428 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2011
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 68SRR Ver. F.0A
  dmi.board.name: 167C
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 22.1F
  dmi.chassis.asset.tag: CNU2021VL9
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68SRRVer.F.0A:bd07/18/2011:svnHewlett-Packard:pnHPProBook4730s:pvrA402:rvnHewlett-Packard:rn167C:rvrKBCVersion22.1F:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 4730s
  dmi.product.version: A402
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.7.2-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.32-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965782

Title:
  Incorrect keyboard shortcuts Super + Tab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965782/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965782] [NEW] Incorrect keyboard shortcuts Super + Tab

2012-03-26 Thread 7Azimuth
Public bug reported:

After pressing the keys Super + Tab, the programs will not open.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xorg 1:7.6+12ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
.tmp.unity.support.test.0:

ApportVersion: 1.95-0ubuntu1
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
CompositorRunning: compiz
Date: Tue Mar 27 01:59:29 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
MachineType: Hewlett-Packard HP ProBook 4730s
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-20-generic 
root=UUID=8bfa5d11-adbf-445c-8c6f-cf259d7b2428 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/18/2011
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68SRR Ver. F.0A
dmi.board.name: 167C
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 22.1F
dmi.chassis.asset.tag: CNU2021VL9
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68SRRVer.F.0A:bd07/18/2011:svnHewlett-Packard:pnHPProBook4730s:pvrA402:rvnHewlett-Packard:rn167C:rvrKBCVersion22.1F:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP ProBook 4730s
dmi.product.version: A402
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.7.2-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 precise ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965782

Title:
  Incorrect keyboard shortcuts Super + Tab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965782/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965770] Re: Xorg crashed with SIGABRT in valuator_mask_set_double()

2012-03-26 Thread Apport retracing service
*** This bug is a duplicate of bug 933504 ***
https://bugs.launchpad.net/bugs/933504

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #933504, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   https://bugs.launchpad.net/bugs/965770/+attachment/2944422/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/2944425/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/2944436/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/2944438/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/2944439/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/290/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/965770/+attachment/292/+files/ThreadStacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 933504
   Xorg crashed with SIGABRT in __libc_message()

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/965770

Title:
  Xorg crashed with SIGABRT in valuator_mask_set_double()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/965770/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 908890] Re: Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

2012-03-26 Thread Martin Karg
has anyone found a solution for the problem yet? im in exactly the same
situation

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/908890

Title:
  Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/908890/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 908890] Re: Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

2012-03-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xorg (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/908890

Title:
  Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/908890/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 908890] Re: Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

2012-03-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/908890

Title:
  Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/908890/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 908890] Re: Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

2012-03-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: unity (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/908890

Title:
  Unity graphics corrupted on Ubuntu 11.10 and AMD/Radeon based netbook

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/908890/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 801941] Re: screen goes blank, wrong size with Natty

2012-03-26 Thread Christopher M. Penalver
** Tags removed: blank screen size

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/801941

Title:
  screen goes blank, wrong size with Natty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/801941/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 873929] Re: X freezes after login on iMac8.1 after upgrade to oneiric

2012-03-26 Thread Olivier Robert
If you're using Oneiric, the only thing you need to do is remove the
nvidia_173 or nvidia_173_updates driver.

The command "jockey-text -l" will give you what supplementary drivers are 
installed, which you can remove with e.g. :
jockey-text -d xorg:nvidia_173

Remove all activated, xorg-prefixed drivers and the system should fall back to 
nouveau. IMHO nouveau is the best you can get if you don't have a proprietary 
driver supporting your GPU. If you're a perfectionist, you can even purge the 
remnants of the nvidia drivers, get a list with :
dpkg -l 'nvidia*'

You will notice some packages have the status flags "rc" which means
they're removed/scheduled for removal ("r"), and configuration files
remain ("c"). Then do an "apt-get purge" followed by the names of those
nvidia "rc" packages separated by spaces... But don't remove nvidia-
common !

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/873929

Title:
  X freezes after login on iMac8.1 after upgrade to oneiric

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/873929/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964511] Re: FGLRX update causes flickering

2012-03-26 Thread Christopher
I did the 'unity --reset' command and my display is back to normal.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/964511

Title:
  FGLRX update causes flickering

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/964511/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 932900] Re: Unity freeze, crashes when trying to restart - intel_do_flush_locked failed: Input/output error

2012-03-26 Thread Giovanni Pardini
Is there any way to reopen this bug?
It still occurs to me...

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/932900

Title:
  Unity freeze, crashes when trying to restart - intel_do_flush_locked
  failed: Input/output error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/932900/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 905686] Re: nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID: Assertion `ret != inval_id' failed.

2012-03-26 Thread Barry Drake
Started using Unity 2d as ther is a current problem with 3d.  Crash
occurred after opening Thunderbird.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/905686

Title:
  nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID:
  Assertion `ret != inval_id' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/xlibs/+bug/905686/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 958439] Re: Doesn't detect monitor / "Unknown", causes flickering / low refresh rate

2012-03-26 Thread Joseph Salisbury
** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/958439

Title:
  Doesn't detect monitor / "Unknown", causes flickering / low refresh
  rate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/958439/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964825] Re: Xorg freeze unity default session

2012-03-26 Thread tomaszko
to reproduce bug
1. select default session in ubuntu 12.04 then login

workoround: always select ubuntu 2D
question how to setup "ubuntu 2D" as default session?

I attached dmesg collected during freeze.

intresting line: [drm:drm_mode_getfb] *ERROR* invalid framebuffer id

Regards,
tomasz

** Attachment added: "dmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/964825/+attachment/2943470/+files/dmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/964825

Title:
  Xorg freeze unity default session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/964825/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 905686] Re: nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID: Assertion `ret != inval_id' failed.

2012-03-26 Thread candtalan
12.04 beta 1 fully updated.
 The machine supports unity 2d only

A few recent updates installed, then I tried cheese webcam app which I
know does not work (I had raised a bug) just to check it still was not
working, then I closed the inactive cheese app and then I opened
camorama webcam app, which I know works ok. Then before I could also
close the camorama app I saw the crash report.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/905686

Title:
  nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID:
  Assertion `ret != inval_id' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/xlibs/+bug/905686/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 582809] Re: Synaptics Clickpad touchpad buttons are not working

2012-03-26 Thread Vitali Kulikou
Right click and drug-n-drop still doesn't work at my hp envy 14-2000.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/582809

Title:
  Synaptics Clickpad touchpad buttons are not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/582809/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964939] Re: Display is flashing and corrupted

2012-03-26 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xorg (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/964939

Title:
  Display is flashing and corrupted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/964939/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 801941] Re: screen goes blank, wrong size with Natty

2012-03-26 Thread MauriceGoodf
The problem still occurs.  What I have discovered is that when the
screen suddenly goes blank, I can get by hitting Alt-Tab.  Hence it is
now an annoyance but doesn't stop me from working - Alt-Tab and I am
back in business.  The only time when it has been a problem is when I am
shutting down and the computer locks up.

I have had a quick look at the WIKI page you referenced but didn't see
my problem there.  What additional information do you require?

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/801941

Title:
  screen goes blank, wrong size with Natty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/801941/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 952246] Re: unity shows memory garbage after login

2012-03-26 Thread Omer Akram
*** This bug is a duplicate of bug 931967 ***
https://bugs.launchpad.net/bugs/931967

duplicate bug 931967

** This bug has been marked a duplicate of bug 931967
   Corrupted graphics after the login  until the unity launcher appears

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/952246

Title:
  unity shows memory garbage after login

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/952246/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 958439] Re: Doesn't detect monitor / "Unknown", causes flickering / low refresh rate

2012-03-26 Thread Darxus
I'm also having this problem with nouveau.  I'm guessing nvidia-settings
doesn't apply to nouveau, but even if it does, I would say the primary
problem is that my monitor is not correctly getting detected.

** Package changed: nvidia-graphics-drivers (Ubuntu) => xorg-server
(Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/958439

Title:
  Doesn't detect monitor / "Unknown", causes flickering / low refresh
  rate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/958439/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 423940] Re: Vsync not working with nvidia & dual monitors

2012-03-26 Thread z
Confirmed on Precise

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/423940

Title:
  Vsync not working with nvidia & dual monitors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/423940/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964327] Re: Dock and Panel flickers whem cursor is moved over them.

2012-03-26 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 963093 ***
https://bugs.launchpad.net/bugs/963093

Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/964327

Title:
  Dock and Panel flickers whem cursor is moved over them.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/964327/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965440] Re: Xorg freeze after connecting to external display

2012-03-26 Thread tririver
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965440

Title:
  Xorg freeze after connecting to external display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965440/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965440] [NEW] Xorg freeze after connecting to external display

2012-03-26 Thread tririver
Public bug reported:

Today when I connect to external display (both from suspend or when the
laptop is running), display freezes with random colors on it. Neither
keyboard or mouse is responsive. Even Ctrl-Alt-Backspace does not work.
I could only reboot using kernel command SysRq-reisub.

Last week there was no such problem (till Mar 24, 2012, and in the past
two days I have not tested it). Thus it may be a problem of some
recently updated packages.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xorg 1:7.6+12ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
NonfreeKernelModules: wl
.tmp.unity.support.test.0:
 
ApportVersion: 1.95-0ubuntu1
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,imgpng,resize,gnomecompat,unitymtgrabhandles,grid,obs,move,place,mousepoll,wall,snap,regex,animation,expo,ezoom,workarounds,fade,session,scale,opacify,unityshell]
CompositorRunning: compiz
Date: Mon Mar 26 11:53:02 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GpuHangFrequency: Continuously
GpuHangReproducibility: Yes, I can easily reproduce it
GpuHangStarted: Today
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha amd64 (20120319)
MachineType: Dell Inc. Studio 1557
ProcEnviron:
 LANGUAGE=en_CA:en
 TERM=xterm
 PATH=(custom, user)
 LANG=en_CA.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-20-generic 
root=UUID=9fe5383f-0bfd-4b1a-9d51-8c9deb76eba0 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/02/2010
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A04
dmi.board.name: 0KM426
dmi.board.vendor: Dell Inc.
dmi.board.version: A04
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A04
dmi.modalias: 
dmi:bvnDellInc.:bvrA04:bd03/02/2010:svnDellInc.:pnStudio1557:pvrA04:rvnDellInc.:rn0KM426:rvrA04:cvnDellInc.:ct8:cvrA04:
dmi.product.name: Studio 1557
dmi.product.version: A04
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.7.2-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 freeze precise ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965440

Title:
  Xorg freeze after connecting to external display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965440/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964075] Re: Graphical corruption in Twitter feed screen when updating

2012-03-26 Thread Brian Murray
This is unlikely to be an issue with ubiquity, rather it is probably
something with the video driver so I am reassigning this to xorg.
Please run apport-collect from this system - thanks in advance.

** Package changed: ubiquity (Ubuntu) => xorg (Ubuntu)

** Changed in: xorg (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/964075

Title:
  Graphical corruption in Twitter feed screen when updating

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/964075/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964075] [NEW] Graphical corruption in Twitter feed screen when updating

2012-03-26 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When observing the Twitter feed screen during the installation, some
graphical corruption is apparent when the feed updates. This takes the
form of thick white lines moving vertically across the panel displaying
the feed.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: ubiquity 2.10.0
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic-pae 3.2.12
Uname: Linux 3.2.0-20-generic-pae i686
ApportVersion: 1.95-0ubuntu1
Architecture: i386
CasperVersion: 1.312
Date: Sat Mar 24 19:06:23 2012
InstallCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet 
splash -- maybe-ubiquity
LiveMediaBuild: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha i386 (20120323)
ProcEnviron:
 TERM=xterm
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: Incomplete


** Tags: apport-bug i386 iso-testing precise ubiquity-2.10.0
-- 
Graphical corruption in Twitter feed screen when updating
https://bugs.launchpad.net/bugs/964075
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to xorg in Ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965418] Re: Sony Vaio Vpc-ca16fg

2012-03-26 Thread Jepriana
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965418

Title:
  Sony Vaio Vpc-ca16fg

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965418/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965418] [NEW] Sony Vaio Vpc-ca16fg

2012-03-26 Thread Jepriana
Public bug reported:

My AMD Radeo HD 6630M not work properly with my Intel Hybrid... My
Laptop always overheat and drop my battery... Thx

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xorg 1:7.6+12ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 1.95-0ubuntu1
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,move,vpswitch,grid,dbus,imgpng,gnomecompat,obs,regex,animation,mousepoll,place,workarounds,wobbly,animationaddon,resize,session,fade,cube,scale,expo,td,unitymtgrabhandles,ezoom,unityshell]
CompositorRunning: compiz
Date: Mon Mar 26 23:32:26 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
MachineType: Sony Corporation VPCCA16FG
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-20-generic 
root=UUID=0a9a4be9-3c07-439d-8fa1-0b00d0da7d5a ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/17/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: R0230V2
dmi.board.asset.tag: N/A
dmi.board.name: VAIO
dmi.board.vendor: Sony Corporation
dmi.board.version: N/A
dmi.chassis.asset.tag: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrR0230V2:bd02/17/2011:svnSonyCorporation:pnVPCCA16FG:pvrC608N01T:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.name: VPCCA16FG
dmi.product.version: C608N01T
dmi.sys.vendor: Sony Corporation
version.compiz: compiz 1:0.9.7.2-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 precise ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/965418

Title:
  Sony Vaio Vpc-ca16fg

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/965418/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 962601] Re: Login into unity shows nothing

2012-03-26 Thread Omer Akram
** Changed in: unity (Ubuntu)
   Status: Confirmed => Incomplete

** Changed in: unity
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in Ubuntu.
https://bugs.launchpad.net/bugs/962601

Title:
  Login into unity shows nothing

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/962601/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 237164] Re: kvm needs to correctly simulate a proper monitor

2012-03-26 Thread Michal Suchanek
Isn't the issue here that the emulated card has too low video memory
forcing 800x600 when the driver selects the default 24bpp depth?

This is an issue with some very old real hardware too.

I guess X could account for that but due to its architecture every
driver would likely have a separate check for this condition (S3,
cirrus, and any other driver that could be possibly used with such low-
mem card).

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/237164

Title:
  kvm needs to correctly simulate a proper monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/237164/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 854388] Re: precise alpha 1 live CD video corruption on nvidia GeForce 6150SE

2012-03-26 Thread Jim Leinweber
Tried the 2012-03-25 precise daily live CD, with mixed results.
1) the unity task bar doesn't display on the live desktop.  It's there, because 
you can e.g. guess at the location of say firefox & it launches.  The ubiquity 
installer runs reasonably well if you dare to try it.

2) booting the resulting disk install leads to login failure with unity
3D but works OK (albeit sluggishly) with unity 2D.  In 3D, the cursor is
OK, and VTY switching works, as do text logins, but the nouveau+compiz
video is still very corrupt - checkerboard-like patterns in shades of
desktop purple.

3) the nvidia current binary driver ran OK for about 40 minutes (gnome-
terminal, firefox, google chrome, libreoffice writer, totem) but died
when I tried to launch Libreoffice calc.

So it's getting better, but we're not quite back to the video
functionality of 11.04 yet.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/854388

Title:
  precise alpha 1 live CD video corruption on nvidia GeForce 6150SE

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/854388/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 921540] Re: 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly several times a day

2012-03-26 Thread psypher
** Tags added: xorg

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/921540

Title:
  12.04 - Multi-monitor setup breaks and reverts to mirror setup
  randomly several times a day

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/921540/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 921540] Re: 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly several times a day

2012-03-26 Thread psypher
Would like to add that this does not just happen while watching
fullscreen videos, it happens completely randomly now. While watching
videos, opening an app, clicking on dash or panel, or just moving the
mouse.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/921540

Title:
  12.04 - Multi-monitor setup breaks and reverts to mirror setup
  randomly several times a day

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/921540/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 921540] Re: Multimonitor setup breaks and reverts to mirror setup randomly and while watching youtube videos

2012-03-26 Thread psypher
This bug is not a duplicate of https://bugs.launchpad.net/ubuntu/+source
/gnome-settings-daemon/+bug/924612 as per Sebastian at that bug.

Please could this be investigated further as this has been occurring
since 12.04 started development.

These are the errors that pop up when the setup breaks:


==> /var/log/kern.log <==
Mar 26 15:00:11 hostname kernel: [16224.830078] warning: `VirtualBox' uses 
32-bit capabilities (legacy support in use)
Mar 26 15:00:17 hostname kernel: [16230.185470] [drm] nouveau :02:00.0: 
PMFB2_SUBP0: 0x037f0040
Mar 26 15:00:17 hostname kernel: [16230.185475] [drm] nouveau :02:00.0: 
PMFB2_SUBP1: 0x037f0040

==> /var/log/Xorg.0.log <==
[ 16238.183] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16238.183] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16238.183] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16238.401] (II) Quirked EDID physical size to 0x0 cm
[ 16238.742] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16238.742] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16238.742] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16238.961] (II) Quirked EDID physical size to 0x0 cm
[ 16240.549] resize called 1024 768
[ 16245.573] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16245.573] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16245.573] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16245.790] (II) Quirked EDID physical size to 0x0 cm
[ 16246.158] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16246.158] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16246.158] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16246.377] (II) Quirked EDID physical size to 0x0 cm
[ 16246.700] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16246.700] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16246.700] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16246.920] (II) Quirked EDID physical size to 0x0 cm
[ 16247.727] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16247.727] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16247.727] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16247.947] (II) Quirked EDID physical size to 0x0 cm
[ 16248.267] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16248.267] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16248.267] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16248.484] (II) Quirked EDID physical size to 0x0 cm
[ 16278.631] (II) NOUVEAU(0): EDID vendor "LGD", prod id 541
[ 16278.631] (II) NOUVEAU(0): Printing DDC gathered Modelines:
[ 16278.631] (II) NOUVEAU(0): Modeline "1600x900"x0.0   99.95  1600 1648 1696 
1824  900 902 905 912 +hsync -vsync (54.8 kHz)
[ 16278.852] (II) Quirked EDID physical size to 0x0 cm

==> /var/log/kern.log <==
Mar 26 15:00:59 hostname kernel: [16272.896114] [drm] nouveau :02:00.0: 
PMFB1_SUBP0: 0x037f
Mar 26 15:00:59 hostname kernel: [16272.896120] [drm] nouveau :02:00.0: 
PMFB1_SUBP1: 0x037f0040
Mar 26 15:00:59 hostname kernel: [16272.896125] [drm] nouveau :02:00.0: 
PMFB2_SUBP0: 0x037f
Mar 26 15:00:59 hostname kernel: [16272.896131] [drm] nouveau :02:00.0: 
PMFB2_SUBP1: 0x037f0040
Mar 26 15:00:59 hostname kernel: [16272.896139] [drm] nouveau :02:00.0: 
PMFB1_SUBP0: 0x037f0040
Mar 26 15:00:59 hostname kernel: [16272.896144] [drm] nouveau :02:00.0: 
PMFB1_SUBP1: 0x037f


** This bug is no longer a duplicate of bug 924612
   gnome-settings-daemon SIGABRT when gnome-session goes down

** Summary changed:

- Multimonitor setup breaks and reverts to mirror setup randomly and while 
watching youtube videos
+ Multi-monitor setup breaks and reverts to mirror setup randomly

** Also affects: xorg (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: gnome-settings-daemon (Ubuntu)

** Summary changed:

- Multi-monitor setup breaks and reverts to mirror setup randomly
+ 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly

** Summary changed:

- 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly
+ 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly 3 
times a day

** Summary changed:

- 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly 3 
times a day
+ 12.04 - Multi-monitor setup breaks and reverts to mirror setup randomly 
several times a day

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/921540

Title:
  12.04 - Multi-monitor setup breaks and reverts to mirror setu

[Ubuntu-x-swat] [Bug 913314] Re: Corrupted display with Spice

2012-03-26 Thread Serge Hallyn
Munzir,

also, to help keep the symptoms straight, would you mind opening a new
bug against xserver-xorg-video-qxl  for the resolution issues?  (You can
point back to comments 18 and 19 in this bug for the log files).

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-qxl in Ubuntu.
https://bugs.launchpad.net/bugs/913314

Title:
  Corrupted display with Spice

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm-spice/+bug/913314/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 913314] Re: Corrupted display with Spice

2012-03-26 Thread Serge Hallyn
Munzir,

tjaalton pointed out that there is a new qxl xorg server in debian.
Would you be able to test that to see if it fixes your existing bugs?
If it does, then we can try to get it into precise.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-qxl in Ubuntu.
https://bugs.launchpad.net/bugs/913314

Title:
  Corrupted display with Spice

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm-spice/+bug/913314/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 293012] Re: glxinfo badRequest (invalid request code or no such operation)

2012-03-26 Thread arruah
affected for me 12.04 beta amd64
X Error of failed request:  BadRequest (invalid request code or no such 
operation)
  Major opcode of failed request:  139 (ATIFGLEXTENSION)
  Minor opcode of failed request:  66 ()
  Serial number of failed request:  13
  Current serial number in output stream:  13

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/293012

Title:
  glxinfo badRequest (invalid request code or no such operation)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/293012/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 943643] Re: Fonts are blurry after the installation of Nvidia driver using jockey

2012-03-26 Thread fmo
** Changed in: nvidia-graphics-drivers (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/943643

Title:
  Fonts are blurry after the installation of Nvidia driver using jockey

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/943643/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 907853] Re: Regression: USB barcode reader output garbage

2012-03-26 Thread Mathieu MD
I'm not sure what more information should I provide...

However, I scanned a barcode from the console (after typing "Ctrl+Alt+F1" from 
KDE session) and it does output the exact same garbage. I tried with a few 
other barcodes, and it seems that the outputed garbage are actually 
translatable:
ç = 9
è = 7
_ = 8
é = 2
& = 1
etc.

Maybe it's not directly related to X, but to the USB or keyboard input
driver or something?

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/907853

Title:
  Regression: USB barcode reader output garbage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/907853/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965203] Re: [gm45] GPU lockup EIR: 0x00000010 PGTBL_ER: 0x00000001 render.IPEHR: 0x60020100

2012-03-26 Thread Helge Jung
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965203

Title:
  [gm45] GPU lockup  EIR: 0x0010 PGTBL_ER: 0x0001 render.IPEHR:
  0x60020100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965203/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965203] [NEW] [gm45] GPU lockup EIR: 0x00000010 PGTBL_ER: 0x00000001 render.IPEHR: 0x60020100

2012-03-26 Thread Helge Jung
Public bug reported:

This happened out of nowhere although I'm experiencing a lot of graphic
freezes on the VT7 recently.

ProblemType: Crash
DistroRelease: Ubuntu 11.10
Package: xserver-xorg-video-intel 2:2.15.901-1ubuntu2.1
ProcVersionSignature: Ubuntu 3.0.0-16.29-generic 3.0.20
Uname: Linux 3.0.0-16-generic x86_64
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
Chipset: gm45
Date: Mon Mar 26 14:02:01 2012
DistroCodename: oneiric
DistroVariant: ubuntu
DuplicateSignature: [gm45] GPU lockup  EIR: 0x0010 PGTBL_ER: 0x0001 
render.IPEHR: 0x60020100 Ubuntu 11.10
ExecutablePath: /usr/share/apport/apport-gpu-error-intel.py
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Beta amd64 (20110901)
InterpreterPath: /usr/bin/python2.7
MachineType: Acer Aspire 3810T
ProcCmdline: /usr/bin/python /usr/share/apport/apport-gpu-error-intel.py
ProcEnviron:
 
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.0.0-16-generic 
root=UUID=9646dffe-37d3-4d32-9fc6-53b122473eb6 ro i8042.reset=1 quiet splash 
vt.handoff=7
RelatedPackageVersions:
 xserver-xorg 1:7.6+7ubuntu7.1
 libdrm2  2.4.26-1ubuntu1
 xserver-xorg-video-intel 2:2.15.901-1ubuntu2.1
SourcePackage: xserver-xorg-video-intel
Title: [gm45] GPU lockup  EIR: 0x0010 PGTBL_ER: 0x0001 render.IPEHR: 
0x60020100
UdevDb: Error: [Errno 2] No such file or directory
UpgradeStatus: Upgraded to oneiric on 2011-10-15 (163 days ago)
UserGroups:
 
dmi.bios.date: 08/27/2009
dmi.bios.vendor: Acer
dmi.bios.version: V1.13
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Aspire 3810T
dmi.board.vendor: Acer
dmi.board.version: PSMBOU-1234567
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnAcer:bvrV1.13:bd08/27/2009:svnAcer:pnAspire3810T:pvrV1.13:rvnAcer:rnAspire3810T:rvrPSMBOU-1234567:cvnAcer:ct10:cvrNone:
dmi.product.name: Aspire 3810T
dmi.product.version: V1.13
dmi.sys.vendor: Acer

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-crash freeze oneiric ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965203

Title:
  [gm45] GPU lockup  EIR: 0x0010 PGTBL_ER: 0x0001 render.IPEHR:
  0x60020100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965203/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 962892] Re: Xorg crashed with SIGABRT in __assert_fail_base()

2012-03-26 Thread m khayron
i have tried suggestion from mr. ronald and it work. thank you for the
information.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/962892

Title:
  Xorg crashed with SIGABRT in __assert_fail_base()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/962892/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965203] Re: [gm45] GPU lockup EIR: 0x00000010 PGTBL_ER: 0x00000001 render.IPEHR: 0x60020100

2012-03-26 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/965203

Title:
  [gm45] GPU lockup  EIR: 0x0010 PGTBL_ER: 0x0001 render.IPEHR:
  0x60020100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/965203/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 962773] Re: [VM800] Xorg freezes when a player plays a video

2012-03-26 Thread Bartosz Kosiorek
** Summary changed:

- Xorg freezes when a player plays a video
+ [VM800] Xorg freezes when a player plays a video

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-openchrome in Ubuntu.
https://bugs.launchpad.net/bugs/962773

Title:
  [VM800] Xorg freezes when a player plays a video

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-openchrome/+bug/962773/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964114] Re: The color profile is staggered. The color pink has a dominant.

2012-03-26 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu localized ISO testing tracker.

A list of all reports related to this bug can be found here:
http://localized-iso.qa.ubuntu.com/qatracker/reports/bugs/964114

** Tags added: localized-iso

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/964114

Title:
  The color profile is staggered. The color pink has a dominant.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/964114/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 931596] Re: Scrambled text when scrolling horizontal

2012-03-26 Thread TRoloff
I can confirm this bug, but would like to add that it happens with other
"table displays", too (e.g. pgadmin3 sql query). Refreshing the table by
changing the zoom level (ctrl+mouse wheel up/down) fixes the display.

I'm using debian 6.0.4,  Linux 2.6.32-5-amd64 SMP x86_64 GNU/Linux, 
updated to the latest driver I found on the website 
(amd-driver-installer-12-2-x86.x86_64.run), same behaviour.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/931596

Title:
  Scrambled text when scrolling horizontal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/931596/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 943643] Re: Fonts are blurry after the installation of Nvidia driver using jockey

2012-03-26 Thread Tarrade
I do have the same problem, tried to write directly the xconf but no
luck

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/943643

Title:
  Fonts are blurry after the installation of Nvidia driver using jockey

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/943643/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965163] [NEW] package nvidia-173 173.14.22-0ubuntu11 failed to install/upgrade: nvidia-173 kernel module failed to build

2012-03-26 Thread Kiran Adduri
Public bug reported:


I haev a Ubuntu 10.04 installation on a x86-64 bit machine, and plugged in an 
Nvidia graphics card, by default nouveau driver is being used, but I wanted to 
use Nvidia driver, when I try to update, I get an error saying the following :
Sorry, the package "nvidia-current" failed to install or upgrade. You can help 
the developers to fix the problem by reporting the problem.
and two options are shown : "Report Problem", and "Close".

I clicked on "Report Problem", and it takes me to this launchpad
registration, and login.

I am filing it because I made it this far.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: nvidia-173 173.14.22-0ubuntu11
Uname: Linux 3.1.5_build_k3_1_kiran1+ x86_64
Architecture: amd64
Date: Mon Mar 26 16:38:24 2012
ErrorMessage: nvidia-173 kernel module failed to build
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429)
PackageVersion: 173.14.22-0ubuntu11
SourcePackage: nvidia-graphics-drivers-173
Title: package nvidia-173 173.14.22-0ubuntu11 failed to install/upgrade: 
nvidia-173 kernel module failed to build
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   x86_64
 kernel: 3.1.5_build_k3_1_kiran1+

** Affects: nvidia-graphics-drivers-173 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-173 in Ubuntu.
https://bugs.launchpad.net/bugs/965163

Title:
  package nvidia-173 173.14.22-0ubuntu11 failed to install/upgrade:
  nvidia-173 kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-173/+bug/965163/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965163] Re: package nvidia-173 173.14.22-0ubuntu11 failed to install/upgrade: nvidia-173 kernel module failed to build

2012-03-26 Thread Kiran Adduri
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-173 in Ubuntu.
https://bugs.launchpad.net/bugs/965163

Title:
  package nvidia-173 173.14.22-0ubuntu11 failed to install/upgrade:
  nvidia-173 kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-173/+bug/965163/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964805] Re: S-Video not working on acer aspire laptop with ATI Mobility Radeon x700

2012-03-26 Thread evgheni
** Bug watch added: freedesktop.org Bugzilla #42650
   https://bugs.freedesktop.org/show_bug.cgi?id=42650

** Also affects: xserver-xorg-driver-ati via
   https://bugs.freedesktop.org/show_bug.cgi?id=42650
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in Ubuntu.
https://bugs.launchpad.net/bugs/964805

Title:
  S-Video not working on acer aspire laptop with ATI Mobility Radeon
  x700

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/964805/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 931596] Re: Scrambled text when scrolling horizontal

2012-03-26 Thread TRoloff
** Also affects: debian
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/931596

Title:
  Scrambled text when scrolling horizontal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/931596/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 873929] Re: X freezes after login on iMac8.1 after upgrade to oneiric

2012-03-26 Thread Wichert Akkerman
I don't need performance,  but stability is important. I'll try the
nouveau driver.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/873929

Title:
  X freezes after login on iMac8.1 after upgrade to oneiric

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/873929/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964566] Re: Xorg crashed with SIGABRT

2012-03-26 Thread Apport retracing service
*** This bug is a duplicate of bug 943880 ***
https://bugs.launchpad.net/bugs/943880

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #943880, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   https://bugs.launchpad.net/bugs/964566/+attachment/2934629/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934632/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934642/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934644/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934645/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934646/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/964566/+attachment/2934647/+files/ThreadStacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 943880
   Xorg crashed with SIGABRT in __libc_message() from XIDestroyDeviceProperty

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/964566

Title:
  Xorg crashed with SIGABRT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/964566/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964822] Re: Xorg crashed with SIGABRT in raise()

2012-03-26 Thread Apport retracing service
*** This bug is a duplicate of bug 962892 ***
https://bugs.launchpad.net/bugs/962892

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #962892, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   https://bugs.launchpad.net/bugs/964822/+attachment/2937016/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937019/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937028/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937030/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937031/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937032/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/964822/+attachment/2937034/+files/ThreadStacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 962892
   Xorg crashed with SIGABRT in __assert_fail_base()

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/964822

Title:
  Xorg crashed with SIGABRT in raise()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/964822/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964679] Re: Xorg crashed with SIGABRT in raise()

2012-03-26 Thread Apport retracing service
*** This bug is a duplicate of bug 943880 ***
https://bugs.launchpad.net/bugs/943880

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #943880, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   https://bugs.launchpad.net/bugs/964679/+attachment/2935617/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935620/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935629/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935631/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935632/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935633/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/964679/+attachment/2935635/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 943880
   Xorg crashed with SIGABRT in __libc_message() from XIDestroyDeviceProperty

** Tags removed: need-i386-retrace

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/964679

Title:
  Xorg crashed with SIGABRT in raise()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/964679/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 964905] Re: Xorg crashed with SIGABRT

2012-03-26 Thread Apport retracing service
*** This bug is a duplicate of bug 943880 ***
https://bugs.launchpad.net/bugs/943880

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #943880, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   https://bugs.launchpad.net/bugs/964905/+attachment/2937766/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937769/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937778/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937780/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937781/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937782/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/964905/+attachment/2937783/+files/ThreadStacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 943880
   Xorg crashed with SIGABRT in __libc_message() from XIDestroyDeviceProperty

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/964905

Title:
  Xorg crashed with SIGABRT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/964905/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 161893] Re: [RV280] xrandr TV output pal garbage image

2012-03-26 Thread evgheni
*** This bug is a duplicate of bug 964805 ***
https://bugs.launchpad.net/bugs/964805

** This bug has been marked a duplicate of bug 964805
   S-Video not working on acer aspire laptop with ATI Mobility Radeon x700

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in Ubuntu.
https://bugs.launchpad.net/bugs/161893

Title:
  [RV280] xrandr TV output pal garbage image

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/161893/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 933504] Re: Xorg crashed with SIGABRT in __libc_message()

2012-03-26 Thread Martin Pitt
** Changed in: xorg-server (Ubuntu Precise)
 Assignee: (unassigned) => Canonical X.org (canonical-x)

** Changed in: xorg-server (Ubuntu Precise)
Milestone: ubuntu-12.04-beta-2 => ubuntu-12.04

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/933504

Title:
  Xorg crashed with SIGABRT in __libc_message()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/933504/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 931397] Re: Xorg crashes with AutoAddDevices "false"

2012-03-26 Thread Martin Pitt
** Changed in: xorg-server (Ubuntu Precise)
Milestone: ubuntu-12.04-beta-2 => ubuntu-12.04

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/931397

Title:
  Xorg crashes with AutoAddDevices "false"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/931397/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 965003] Re: dell mini 10v touchpad dragging stopped working

2012-03-26 Thread Rick Spencer
Attaching output as requested

** Attachment added: "syn.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/965003/+attachment/2938998/+files/syn.txt

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
 Assignee: (unassigned) => Chase Douglas (chasedouglas)

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/965003

Title:
  dell mini 10v touchpad dragging stopped working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/965003/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 962892] Re: Xorg crashed with SIGABRT in __assert_fail_base()

2012-03-26 Thread ubun2-fan
As i also reported a bugreport about booting ubuntu without unity-panel
and or black screen. In my search to get a workaround for this i found
out that a reset of compiz and unity brought back a normal desktop.
While an update of gnome or unity panel or ccsm with to much comflicting
settings scambled the settings for compiz and unity. To do a unity and
compiz reset i did the following: (regards to webupd8 website
http://www.webupd8.org/2011/12/unity-3d-launcher-top-panel-doesnt-
load.html)..

boot up, press CTRL-ALT-F1 and login.

To reset all the Compiz settings (this includes all the plugins
settings, etc.) to the default values, open a terminal (don't run it
with ALT + F2! The top panel and launcher will disappear after running
the first command but will show up after the second one so use a
terminal) and type:

export DISPLAY=:0.0

gconftool-2 --recursive-unset /apps/compiz-1
gconftool-2 --recursive-unset /apps/compizconfig-1
unity --reset

now log out and login again and unity is back.

..I hope this will give some help..

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/962892

Title:
  Xorg crashed with SIGABRT in __assert_fail_base()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/962892/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp