[Ubuntu-x-swat] [Bug 1354086] Re: [i5-3230] Tight pyopencl.clmath loops cause out-of-memory system hang

2018-07-16 Thread Rebecca Palmer
** Patch added: "eventchain-memory-leak.patch"
   
https://bugs.launchpad.net/ubuntu/+source/pyopencl/+bug/1354086/+attachment/5164304/+files/eventchain-memory-leak.patch

** Changed in: beignet (Ubuntu)
   Status: New => In Progress

-- 
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/1354086

Title:
  [i5-3230] Tight pyopencl.clmath loops cause out-of-memory system hang

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/beignet/+bug/1354086/+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 1354086] Re: [i5-3230] Tight pyopencl.clmath loops cause out-of-memory system hang

2018-07-16 Thread Rebecca Palmer
There are actually three separate issues here, but as (a) is already
known and (b) is not a bug, I define this bug to be (c).

To understand them, it is necessary to know that OpenCL computations are
asynchronous: a clmath expression like "aCL=bCL+cCL" places this
operation in a CommandQueue and returns without waiting for it to
finish.  (This is to allow the CPU to do other work during the GPU
computation.)

(a) Running out of memory can hang the entire system, rather than ending
just the OpenCL application with CL_OUT_OF_RESOURCES.

This is probably the same long-standing issue (e.g. bug 620074, bug
1504914, bug 1592813) that makes Linux out-of-memory conditions in
general do this.  (The integrated GPUs supported by beignet share the
host's memory.)

(b) In both beignet and pocl (probably all ICDs), a long sequence of
allocate/deallocate operations (e.g. clmath creating a new array each
operation) *without* waiting for results uses up memory, but regularly
waiting for results avoids this.

This is because allocating memory (clCreateBuffer) happens immediately,
but the actual computations are queued, and memory can't be freed until
the computations using it have finished.  Hence, if many operations are
queued without waiting for a result, memory allocation can run far ahead
of computation, filling up the memory.

This is not a bug: don't do that.  Either wait for results often enough
that this doesn't build up to the point of running out of memory, or
(better for performance) re-use existing memory objects instead of
allocating/deallocating.  (To do the latter with clmath, use
pyopencl.tools.MemoryPool.)

While investigating this I discovered that all beignet queues are out-
of-order execution even if the user requested in-order, which is a bug,
but is not the cause of this issue.

(c) In beignet but not pocl, a long sequence of clmath operations leaks
memory, even with regular waits.

To ensure that intermediate results are calculated before they are used,
clmath arrays use Event objects to track dependencies.  A beignet event
includes references to the event(s) it depends on
(https://sources.debian.org/src/beignet/1.3.2-2/src/cl_event.h/?hl=47#L40),
and continues to hold these as long as the event object exists, even if
it has completed and been waited for.  As OpenCL objects are freed by
reference counting, this means that as long as the last event in a
dependency tree exists, the whole tree of (recursive) dependencies also
exists, taking up memory (~20kB per event).

pocl avoids this by dropping these references after completion (
https://sources.debian.org/src/pocl/1.1-5/lib/CL/devices/common.c/?hl=722#L714
); the attached patch makes beignet do so.  Checking the source suggests
mesa is also affected (
https://sources.debian.org/src/mesa/18.1.3-1/src/gallium/state_trackers/clover/core/event.hpp/?hl=84#L34
), but I don't have the hardware to try it.  (The OpenCL part of mesa is
AMD/Radeon only.)


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

** Changed in: pyopencl (Ubuntu)
   Status: New => Invalid

-- 
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/1354086

Title:
  [i5-3230] Tight pyopencl.clmath loops cause out-of-memory system hang

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/beignet/+bug/1354086/+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 1683512] Re: No libcuda.so.1 after upgrading to 381-driver

2018-05-06 Thread Rebecca Palmer
('invalid' as in 'not our (theano's) bug')

Where did you obtain nvidia-381 (Ubuntu itself went straight from -375
to -384)? the Nvidia website? a PPA?

nvidia-graphics-drivers-384 is now available in xenial-updates: is that
any better?

(libcudata.so.8 is probably a different library, not the file you want.)

** Changed in: theano (Ubuntu)
   Status: Confirmed => Invalid

-- 
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/1683512

Title:
  No libcuda.so.1 after upgrading to 381-driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1683512/+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 1333417] Re: [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from suspend

2015-09-27 Thread Rebecca Palmer
I no longer have the affected hardware.

-- 
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/1333417

Title:
  [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from
  suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1333417/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2015-03-07 Thread Rebecca Palmer
As nobody has been able to test this in flightgear, assuming it's the
same really-in-mesa problem.  (It's also likely that this hardware
wouldn't run flightgear at a usable speed anyway.)

** Changed in: flightgear (Ubuntu)
   Status: Incomplete = Invalid

-- 
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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2015-02-15 Thread Rebecca Palmer
Assigning a bug to yourself means intending to fix it, which given that
you can;t do anything was probably not what you meant.

If your system does not work, please file a new bug stating exactly what
is wrong: https://help.ubuntu.com/community/ReportingBugs

If you are looking for general help with using Ubuntu, please use
http://www.ubuntuforums.org/ or http://askubuntu.com/

** Changed in: flightgear (Ubuntu)
 Assignee: sidlwebb (sidlwebb) = (unassigned)

-- 
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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-25 Thread Rebecca Palmer
The error occurs because nv10 (the driver used for this card) declares
VBO support (extension GL_ARB_vertex_buffer_object) but only supports
VBOs of int8, int16 and float (not double) types, and the application is
trying to draw data of type double.  Given that the double type is part
of the OpenGL spec, that would appear to be a bug in mesa, not the
application.

The easy fix would be don't declare VBO support on those cards, but
that would slow down many other applications, and break any that require
this feature.

An alternative would be a software fallback that reads back the VBO data
and draws it as either a client-side array or individual primitives
(which would probably be even slower, but only applications that
actually use doubles would take the penalty), but that might be more
work than is reasonable to do for little benefit: stellarium and other
QtOpenGL applications will lose OpenGL 1 support in the upcoming Qt 5
transition anyway, and flightgear would probably be unusably slow on
such old hardware even if it didn't crash.

As an immediate workaround, you can use software rendering with
LIBGL_ALWAYS_SOFTWARE=1 stellarium
(perhaps the error message should suggest that?), but expect that to be slow.

I will report this upstream.

** Changed in: stellarium (Ubuntu)
   Status: Confirmed = Invalid

** Changed in: flightgear (Ubuntu)
   Status: New = Incomplete

** Changed in: mesa (Ubuntu)
   Status: Incomplete = 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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-25 Thread Rebecca Palmer
Sorry, upstream explicitly don't want bug reports for cards older than
nv30 (yours is nv18, current is ~nv120):
http://nouveau.freedesktop.org/wiki/MesaDrivers/

Changing the error message (at
http://sources.debian.net/src/mesa/10.3.2-1/src/mesa/drivers/dri/nouveau/nv10_render.c/#L104
) to something more useful, e.g.

-  assert(0);
+  assert(0  This application requires GLdouble vertex buffers, which your 
graphics card does not support.  Try software rendering 
(LIBGL_ALWAYS_SOFTWARE=1 application).);

is probably about all that is reasonable to do as a Debian/Ubuntu patch.

** Tags removed: quantal third-party-packages
** Tags added: 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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-24 Thread Rebecca Palmer
(Sorry about the repeated questions: that's the nature of debugging a
problem that only happens on hardware I don't have.)

That looks like either a bad GLcontext (at the error location it is only
looking at this internal structure, not the objects to be drawn), or an
attempt to use VBO (an OpenGL 1.5 feature) on an OpenGL 1.2 card.

Can you try this, preferably in a terminal with unlimited scrollback (Edit  
Profile Preferences  Scrolling) as there may be a lot of output:
$ sudo apt-get install libqt4-dbg mesa-utils
$ glxinfo 
$ gdb --args stellarium
(gdb) run
[wait for crash, Alt+Tab back to terminal]
[all this is at the (gdb) prompt, writing it without prompts so you can cut and 
paste it]
set pagination 0
thread apply all bt full
frame 9
print *ctx
print *nctx
frame 10
print *vbo
print *exec

-- 
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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-23 Thread Rebecca Palmer
 stellarium: 
 ../../../../../../../src/mesa/drivers/dri/nouveau/nv10_render.c:104: 
 get_hw_format: Assertion `0' failed.
That also appears to mean invalid format, so is probably the same bug.

 For whatever it's worth, I did the routine you described. The Stellarium 
 startup screen appeared but didn't disappear.
That's expected when something crashes under a debugger: please switch back to 
the debugger window (Alt+Tab), type thread apply all bt full and post the 
output.  (You can then close the debugger and program with quit.)

-- 
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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-19 Thread Rebecca Palmer
** Also 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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1079011] Re: stellarium assert failure: nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

2014-11-19 Thread Rebecca Palmer
That message means invalid/unsupported buffer format (
http://sources.debian.net/src/mesa/10.3.2-1/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
), and as it appears to refer to an internal nouveau buffer rather than
a passed-in texture, I suspect this is actually a mesa/nouveau bug.

As I do not have the hardware to test this myself, please do (in a
terminal):

$ sudo apt-get install libgl1-mesa-dri-dbg gdb
$ gdb --args fgfs
[or gdb --args stellarium, whichever is easier to reproduce the crash in]
(gdb) set pagination 0
(gdb) run
[wait for crash]
(gdb) thread apply all bt full

and post the ouput here.

** Changed in: mesa (Ubuntu)
   Status: New = Incomplete

-- 
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/1079011

Title:
  stellarium assert failure:  nv10_state_fb.c:50: get_rt_format:
  Assertion `0' failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flightgear/+bug/1079011/+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 1392737] Re: Missing cl_egl.h

2014-11-19 Thread Rebecca Palmer
This was because prior to 1.2-svn26009 the package used an explicit list
of what files to include ( http://sources.debian.net/src/khronos-opencl-
headers/1.2-2013.06.28-2~bpo70%2B1/debian/rules/#L14 ) which did not
include cl_egl.h; this has now been fixed.

As this package has no dependencies, installing the Vivid 1.2-svn26009
package in Trusty will probably work.

** Changed in: khronos-opencl-headers (Ubuntu)
   Status: New = Fix Released

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

Title:
  Missing cl_egl.h

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/khronos-opencl-headers/+bug/1392737/+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 1315156] Re: nvidia-331 selected but nouveau loads

2014-07-13 Thread Rebecca Palmer
The full workaround sequence is the one I posted in the updated
description, not the comments.  (There's no such package as just
nouveau, so sudo apt-get remove nouveau won't do anything, and the
drivers dialog does  a remove not the here-required purge.)

I also have the nouveau W[ PFIFO][:01:00.0] INTR 0x0100:
0x0005 messages when running nouveau, sometimes ending in a crash
(bug 1243557), and can't suspend with either driver (bug 1333417 / bug
1333431).  I don't have HDMI sound so can't test that, but would suggest
filing a separate bug for that problem.

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1243557]

2014-07-01 Thread Rebecca Palmer
Created attachment 101990
kernel log 3.15rc-Jun-27

This bug still exists in drm-nouveau-next (commit
242a42eadfc17448a0d5b2ffc0cb191c8b51971a) with Ubuntu 14.04 userspace.
The error message has changed to E[   PFIFO][:01:00.0] INTR
0x0080, and some of the INTR 0x0100: 0x0005 warnings now
come _after_ it.

In Ubuntu 14.04 (not 13.10) with either this git kernel or its standard
3.13, there is also a hang on resume from suspend
(https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
nouveau/+bug/1333417), but it is not clear whether this is a driver or
BIOS problem.

In the attached, the original bug is at 08:09:47 and 08:20:06, the
resume failure (which can log GPU lockup, failed to idle chanel
0x0001 [Xorg[1185]], or nothing) is at 08:14:53.

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1333417] [NEW] [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from suspend

2014-06-23 Thread Rebecca Palmer
Public bug reported:

In Trusty with the Nouveau driver selected, the system hangs on resume
from suspend, sometimes showing some or all of the pre-suspend screen
contents, and sometimes a boot messages screen.

The system log shows activity after resume, and sometimes (not always) contains 
the error
nouveau E[Xorg[1185]] failed to idle channel 0x0001 [Xorg[1185]]

This problem did not exist in Saucy (though the random crash bug 1244312
did).

Possibly relevant: this system has an outdated BIOS because the updater
requires Windows (see bug 1244312).

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  331.38  Wed Jan  8 19:32:30 
PST 2014
 GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Mon Jun 23 21:36:37 2014
DistUpgraded: 2014-04-29 18:46:17,249 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.7, 3.13.0-27-generic, x86_64: installed
 bbswitch, 0.7, 3.13.0-29-generic, x86_64: installed
 nvidia-331, 331.38, 3.13.0-29-generic, x86_64: installed
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: Dell Device [1028:0494]
InstallationDate: Installed on 2012-01-25 (880 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
MachineType: Dell Inc. Latitude E6520
PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet reboot=p
SourcePackage: xserver-xorg-video-nouveau
UpgradeStatus: Upgraded to trusty on 2014-04-29 (55 days ago)
dmi.bios.date: 10/18/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A08
dmi.board.name: 0J4TFW
dmi.board.vendor: Dell Inc.
dmi.board.version: A01
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
dmi.product.name: Latitude E6520
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Mon Jun 23 20:07:29 2014
xserver.configfile: default
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.15.1-0ubuntu2

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


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

** Attachment added: syslog; bug is at Jun 23 19:55:17 and Jun 23 19:58:31
   https://bugs.launchpad.net/bugs/1333417/+attachment/4137694/+files/syslog

-- 
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/1333417

Title:
  [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from
  suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1333417/+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 1333417] Re: [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from suspend

2014-06-23 Thread Rebecca Palmer
** Description changed:

  In Trusty with the Nouveau driver selected, the system hangs on resume
  from suspend, sometimes showing some or all of the pre-suspend screen
  contents, and sometimes a boot messages screen.
  
  The system log shows activity after resume, and sometimes (not always) 
contains the error
  nouveau E[Xorg[1185]] failed to idle channel 0x0001 [Xorg[1185]]
  
  This problem did not exist in Saucy (though the random crash bug 1244312
- did).
+ did).  It cannot be tested with the nvidia-331 driver because bug
+ 1333431 prevents suspend with that.
  
  Possibly relevant: this system has an outdated BIOS because the updater
  requires Windows (see bug 1244312).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  331.38  Wed Jan  8 19:32:30 
PST 2014
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Jun 23 21:36:37 2014
  DistUpgraded: 2014-04-29 18:46:17,249 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bbswitch, 0.7, 3.13.0-27-generic, x86_64: installed
   bbswitch, 0.7, 3.13.0-29-generic, x86_64: installed
   nvidia-331, 331.38, 3.13.0-29-generic, x86_64: installed
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
 Subsystem: Dell Device [1028:0494]
  InstallationDate: Installed on 2012-01-25 (880 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  MachineType: Dell Inc. Latitude E6520
  PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet reboot=p
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: Upgraded to trusty on 2014-04-29 (55 days ago)
  dmi.bios.date: 10/18/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A08
  dmi.board.name: 0J4TFW
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6520
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Mon Jun 23 20:07:29 2014
  xserver.configfile: default
  xserver.errors: open /dev/fb0: No such file or directory
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.15.1-0ubuntu2

-- 
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/1333417

Title:
  [regression] [Dell Latitude E6520] [NVS 4200M] Hangs on resume from
  suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1333417/+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 1315156] Re: nvidia-331 selected but nouveau loads

2014-05-07 Thread Rebecca Palmer
I've found out how /etc/modprobe.d/nvidia-331_hybrid.conf disappeared:
nvidia-331's postrm explicitly deletes it, but as it's a conffile
reinstalling nvidia-331 doesn't put it back.  However, having it present
doesn't fix the main bug.

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1315156] Re: nvidia-331 selected but nouveau loads

2014-05-07 Thread Rebecca Palmer
Found how nouveau was being loaded while blacklisted: it's in the
initramfs and nvidia-331_hybrid.conf wasn't.

This can be fixed by updating the initramfs (sudo update-initramfs -u,
assuming the kernel you are currently running is the one you want to use
nvidia-331 with), but my system also seems to have forgotten that
nvidia-* needs the text-only splash screen (bug 1063969), causing it to
drop into a low resolution graphics mode.  This can be worked around by
disabling the splash screen entirely (remove splash from the kernel
command line in /etc/default/grub then run update-grub).

** Description changed:

  After upgrading to Trusty, I briefly used the nouveau driver to check
  whether bug 1243557 still existed; after finding that it did, I switched
  back to nvidia-331.
  
  However since then, frequently (50% but not always), the system loads
  nouveau first, then fails to load nvidia-331 because of this:
  
  Apr 30 08:00:29 lap14 kernel: [   17.789267] nouveau  [  
DEVICE][:01:00.0] BOOT0  : 0x0d9160a1
  Apr 30 08:00:29 lap14 kernel: [   17.789269] nouveau  [  
DEVICE][:01:00.0] Chipset: GF119 (NVD9)
  Apr 30 08:00:29 lap14 kernel: [   17.789271] nouveau  [  
DEVICE][:01:00.0] Family : NVD0
  [...]
  Apr 30 08:00:32 lap14 kernel: [   21.574983] NVRM: The NVIDIA probe routine 
was not called for 1 device(s).
  Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: This can occur when a 
driver such as: 
  Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: nouveau, rivafb, nvidiafb 
or rivatv 
  Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: was loaded and obtained 
ownership of the NVIDIA device(s).
  
+ WORKAROUND: at a text terminal:
+ sudo apt-get purge nvidia-331
+ sudo apt-get install nvidia-331
+ sudo update-initramfs -u
+ sudoedit /etc/default/grub
+ #remove 'splash' from GRUB_CMDLINE_LINUX_DEFAULT, and save with the default 
name
+ sudo update-grub
+ #reboot the system
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: nvidia-331 331.38-0ubuntu7
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu May  1 22:08:36 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-01-25 (827 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  SourcePackage: nvidia-graphics-drivers-331
  UpgradeStatus: Upgraded to trusty on 2014-04-29 (2 days ago)
  modified.conffile..etc.modprobe.d.nvidia.331.hybrid.conf: [deleted]

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1315156] Re: nvidia-331 selected but nouveau loads

2014-05-06 Thread Rebecca Palmer
The NVRM log messages stopped after reinstalling nvidia-331, but the
system continued to use nouveau, and hence to crash (bug 1243557).

 modified.conffile..etc.modprobe.d.nvidia.331.hybrid.conf: [deleted]

I don't know how that (which blacklists nouveau) came to be missing, but
purging and re-installing nvidia-331 put it back but didn't stop nouveau
loading.

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1315156] Re: nvidia-331 selected but nouveau loads

2014-05-01 Thread Rebecca Palmer
** Attachment added: kern.log
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1315156/+attachment/4102693/+files/kern.log

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1315156] [NEW] nvidia-331 selected but nouveau loads

2014-05-01 Thread Rebecca Palmer
Public bug reported:

After upgrading to Trusty, I briefly used the nouveau driver to check
whether bug 1243557 still existed; after finding that it did, I switched
back to nvidia-331.

However since then, frequently (50% but not always), the system loads
nouveau first, then fails to load nvidia-331 because of this:

Apr 30 08:00:29 lap14 kernel: [   17.789267] nouveau  [  DEVICE][:01:00.0] 
BOOT0  : 0x0d9160a1
Apr 30 08:00:29 lap14 kernel: [   17.789269] nouveau  [  DEVICE][:01:00.0] 
Chipset: GF119 (NVD9)
Apr 30 08:00:29 lap14 kernel: [   17.789271] nouveau  [  DEVICE][:01:00.0] 
Family : NVD0
[...]
Apr 30 08:00:32 lap14 kernel: [   21.574983] NVRM: The NVIDIA probe routine was 
not called for 1 device(s).
Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: This can occur when a driver 
such as: 
Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: nouveau, rivafb, nvidiafb or 
rivatv 
Apr 30 08:00:32 lap14 kernel: [   21.574987] NVRM: was loaded and obtained 
ownership of the NVIDIA device(s).

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: nvidia-331 331.38-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CurrentDesktop: Unity
Date: Thu May  1 22:08:36 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2012-01-25 (827 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
SourcePackage: nvidia-graphics-drivers-331
UpgradeStatus: Upgraded to trusty on 2014-04-29 (2 days ago)
modified.conffile..etc.modprobe.d.nvidia.331.hybrid.conf: [deleted]

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

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


** Tags: amd64 apport-bug trusty

** Also affects: xserver-xorg-video-nouveau (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/1315156

Title:
  nvidia-331 selected but nouveau loads

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1315156/+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 1174205] Re: Using pyopencl doesn't work and spits our ImportError

2014-05-01 Thread Rebecca Palmer
Fixed in Trusty: pyopencl now depends on a new virtual libopencl-1.2-1,
which forces selection of a libopencl1 it will work with.  (opencl-icd
still needs to be chosen manually to match the hardware, but that's bug
1264844)

** Changed in: pyopencl (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: nvidia-graphics-drivers-319 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
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/1174205

Title:
  Using pyopencl doesn't work and spits our ImportError

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1174205/+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 1243557]

2014-03-31 Thread Rebecca Palmer
Created attachment 96610
kernel log 3.14rc-Mar-26

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-03-31 Thread Rebecca Palmer
This bug still exists in 3.14rc commit
f217c44ebd41ce7369d2df07622b2839479183b0 (26 Mar Linus' tree, Ubuntu
userspace; as the nouveau/master branch hasn't been used for 5 months,
should we stop suggesting that people test with it?).

Is there anything else I can do to help?  I will probably only have this
machine for a few more months.

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-03-31 Thread Rebecca Palmer
Created attachment 96611
Xorg log 3.14rc-Mar-26

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-01-20 Thread Rebecca Palmer
Your script, and kernel 3.13-rc7 with either the nvd9 or nvd7
firmware also gives a blank screen.

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-01-20 Thread Rebecca Palmer
Created attachment 92127
kernel log 3.13rc+firmware

What does not in the initrd mean?  The files were in
/lib/firmware/nouveau with the names the script gave them (nvd9_fuc*).

The errors with kernel 3.13-rc7 (attached) are similar:
Jan 13 22:47:57 lap14 kernel: [1.653189] nouveau  [  PGRAPH][:01:00.0] 
using external firmware
Jan 13 22:47:57 lap14 kernel: [1.653203] nouveau :01:00.0: Direct 
firmware load failed with error -2
Jan 13 22:47:57 lap14 kernel: [1.653204] nouveau :01:00.0: Falling back 
to user helper
Jan 13 22:47:57 lap14 kernel: [1.653447] nouveau :01:00.0: Direct 
firmware load failed with error -2
Jan 13 22:47:57 lap14 kernel: [1.653452] nouveau :01:00.0: Falling back 
to user helper
Jan 13 22:47:57 lap14 kernel: [1.653651] nouveau E[  PGRAPH][:01:00.0] 
failed to load fuc409c
Jan 13 22:47:57 lap14 kernel: [1.653658] nouveau E[  DEVICE][:01:00.0] 
failed to create 0x1800d916, -22
Jan 13 22:47:57 lap14 kernel: [1.653663] nouveau E[ DRM] failed to 
create 0x8080, -22
Jan 13 22:47:57 lap14 kernel: [1.654258] nouveau: probe of :01:00.0 
failed with error -22

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-01-20 Thread Rebecca Palmer
It still doesn't find the firmware after updating the initramfs (sudo
update-initramfs -u -k all), whether it is placed at
/lib/firmware/nouveau/nvd9_fuc*, /lib/firmware/nouveau/fuc*,
/lib/firmware/kernel_version/nouveau/nvd9_fuc* or
/lib/firmware/kernel_version/nouveau/fuc*.  (The script uses nvd9_fuc*
but http://nouveau.freedesktop.org/wiki/NVC0_Firmware/ says just fuc*
for pre-NVE0 cards.)

My 3.13-rc7 test kernel was compiled with the procedure in 
https://wiki.ubuntu.com/KernelTeam/GitKernelBuild; the .config lines containing 
nouveau are
CONFIG_DRM_NOUVEAU=m
CONFIG_NOUVEAU_DEBUG=5
CONFIG_NOUVEAU_DEBUG_DEFAULT=3
CONFIG_DRM_NOUVEAU_BACKLIGHT=y
and kernel/drivers/gpu/drm/nouveau/nouveau.ko is on the modules.order list, not 
the modules.builtin list.

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-01-13 Thread Rebecca Palmer
Created attachment 91782
Ubuntu 14.04 (Linux 3.13.0) log

This bug is easier to trigger in Ubuntu Trusty (kernel 3.13.0, libdrm-
nouveau2 2.4.50, xserver-xorg-video-nouveau 1.0.10, mesa 10.0.1),
occurring immediately on heavy graphics load and within a few minutes
even in ordinary use.

The attached log contains more instances of the warning than were normal
in 13.10, but not the final error (I suspect it wasn't synced to disk).

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2014-01-13 Thread Rebecca Palmer
Created attachment 91842
kernel log 3.13rc7 and 3.11+firmware

The 3.13-rc7 upstream kernel in Ubuntu 13.10 also sometimes crashes, but
not as often as the near-identical kernel in Trusty; this might mean the
regression is in userspace, or might be the same persistence (presumably
a left-behind configuration change from 3.12) we saw earlier.

The blob firmware (in the standard 3.11 kernel) turns the login screen
blank, with no recognisable error in the log.

-- 
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/1243557

Title:
  10de:1056 [Dell Latitude E6520] [NVS 4200M] X freeze, unhandled
  status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1174205] Re: Using pyopencl doesn't work and spits our ImportError

2013-11-25 Thread Rebecca Palmer
This is partially fixed in Trusty (nvidia-graphics-drivers-331): nvidia-
libopencl1-331 is now a separate package which the main driver only
Recommends:, so co-installing ocl-icd-libopencl1 and nvidia-331 is now
allowed, but as virtual packages aren't versioned, pyopencl will still
think nvidia-libopencl1-331 satisfies its libopencl1 dependency.

There are a few obvious solutions, but none of them are neat:
-Have pyopencl Depend: specifically on ocl-icd-libopencl1.  The maintainer has 
previously said he doesn't want to do that:  
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682435
-Have nvidia-libopencl1-* not Provide: libopencl1 (effectively defining the 
libopencl1 virtual package to be at least OpenCL 1.2).
-Remove the Recommends: nvidia-libopencl1-331 from nvidia-331, allowing 
pyopencl's preference for ocl-icd-libopencl1 (Depends: ocl-icd-libopencl1 | 
libopencl1) to take effect.  Possibly replace it with a Recommends: 
ocl-icd-libopencl1 to retain has OpenCL by default.

** Bug watch added: Debian Bug tracker #682435
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682435

-- 
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/1174205

Title:
  Using pyopencl doesn't work and spits our ImportError

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1174205/+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 1174205] Re: Using pyopencl doesn't work and spits our ImportError

2013-11-23 Thread Rebecca Palmer
Did you delete the nvidia libopenCL* from both
/usr/lib/nvidia-319-updates and /usr/lib32/nvidia-319-updates, and are
they still absent (an update of nvidia-319-updates might have put them
back)?  Does the problem persist after restarting the machine?

My setup of copying libOpenCL.so.1.0.0 to /usr/local/lib and there
creating libOpenCL.so, libOpenCL.so.1 symlinks doesn't require deleting
Nvidia's libopenCL (but does require running ldconfig) so will survive
Nvidia updates, but will need to be manually removed to revert to the
package when this bug is fixed.

-- 
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/1174205

Title:
  Using pyopencl doesn't work and spits our ImportError

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1174205/+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 1243557]

2013-11-20 Thread Rebecca Palmer
Created attachment 89421
kernel log 2

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2013-11-20 Thread Rebecca Palmer
Created attachment 89422
Xorg log 2

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2013-11-20 Thread Rebecca Palmer
This bug seemed to become harder to trigger when I installed git-as-of-
Oct-26, then easier again when I installed git-as-of-Nov-14, but given
that this change seemed to persist after returning to 3.11 (suggesting a
left-behind configuration change) and the general randomness of the bug,
this would not give a reliable bisection (so the date mismatch doesn't
rule out #71662 being the same bug).

In 3.8.0 the same symptoms occur but the log message is
nouveau ![   PFIFO][:01:00.0] unhandled status 0x0100
I suspect (but have not tested) that this change was 
http://cgit.freedesktop.org/nouveau/linux-2.6/commit/drivers/gpu/drm/nouveau/core/engine/fifo/nvc0.c?id=32256c87ead3edec86bed5023a0ff96a6d907931
 ,i.e. this error was what is now the warning.

Is 0x0080 unhandled because it is an inherently fatal error, or
because nobody outside Nvidia knows what it means?
https://github.com/envytools/envytools/blob/master/hwdocs/fifo/nvc0-pfifo.rst
is a contentless stub.

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557]

2013-11-20 Thread Rebecca Palmer
Switching to the 9.2 branch of mesa makes the git userspace start, but
it still has the original bug.  In the attached logs:

Nov 18 16:29 and Xorg log: git kernel, git userspace (libdrm head, 
xf86-video-nouveau head, mesa 9.2 branch head)
Nov 18 16:37: Ubuntu kernel, git userspace

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-11-15 Thread Rebecca Palmer
** Bug watch added: freedesktop.org Bugzilla #71659
   https://bugs.freedesktop.org/show_bug.cgi?id=71659

** Also affects: nouveau via
   https://bugs.freedesktop.org/show_bug.cgi?id=71659
   Importance: Unknown
   Status: Unknown

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1243557/+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 1243557] BootLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: BootLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892900/+files/BootLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-27 Thread Rebecca Palmer
apport information

** Tags added: apport-collected

** Description changed:

  With the Nouveau driver selected, my system freezes within a few minutes
  of boot if on battery, but only on heavy graphics load (flightgear in
  maximized window) if on mains.  The mouse pointer still moves, but
  neither the keyboard LEDs nor Alt+SysRq+b reboot work: the only way out
  is the power button.  The kernel log nearly always contains the line
  
  nouveau ![   PFIFO][:01:00.0] unhandled status 0x0080
  
  and sometimes other errors as well; the full log is attached.
  
  This does not occur with the nvidia-319 driver (which I hence switched
  back to, before running apport).  I first noticed it after upgrading to
  13.10, but suspect this was because I'd never done the above in Nouveau
  before, not an actual regression.
  
  Possibly related to bug 1241595.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.32  Wed Jun 19 15:51:20 
PDT 2013
   GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2
  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
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Oct 23 08:19:06 2013
  DistUpgraded: 2013-10-21 23:03:05,341 DEBUG enabling apt cron job
  DistroCodename: saucy
  DistroVariant: ubuntu
  DkmsStatus: nvidia-319, 319.32, 3.11.0-12-generic, x86_64: installed
  EcryptfsInUse: Yes
  GraphicsCard:
   NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
 Subsystem: Dell Device [1028:0494]
  InstallationDate: Installed on 2012-01-25 (636 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  JockeyStatus:
   kmod:nvidia_319_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:wl - Broadcom STA wireless driver (Proprietary, Disabled, Not in use) 
[auto-install]
   kmod:nvidia_304 - NVIDIA binary Xorg driver, kernel module and VDPAU library 
(Proprietary, Disabled, Not in use)
   kmod:nvidia_304_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:nvidia_319 - nvidia_319 (Proprietary, Enabled, Not in use)
  MachineType: Dell Inc. Latitude E6520
  MarkForUpload: True
  PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet splash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: Upgraded to saucy on 2013-10-21 (1 days ago)
  XorgConf:
   Section Device
Identifier  Default Device
Option  NoLogoTrue
   EndSection
  dmi.bios.date: 10/18/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A08
  dmi.board.name: 0J4TFW
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6520
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Oct 23 07:24:22 2013
  xserver.configfile: /etc/X11/xorg.conf
  xserver.errors:
   Failed to load /usr/lib/xorg/modules/libglamoregl.so: 
/usr/lib/xorg/modules/libglamoregl.so: undefined symbol: _glapi_tls_Context
   Failed to load module glamoregl (loader failed, 7)
   open /dev/fb0: No such file or directory
  xserver.logfile: 

[Ubuntu-x-swat] [Bug 1243557] Dependencies.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892905/+files/Dependencies.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] LightdmDisplayLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: LightdmDisplayLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892914/+files/LightdmDisplayLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] HookError_source_xserver_xorg_video_nouveau.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: HookError_source_xserver_xorg_video_nouveau.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892913/+files/HookError_source_xserver_xorg_video_nouveau.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] DpkgLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: DpkgLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892912/+files/DpkgLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] LightdmGreeterLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: LightdmGreeterLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892915/+files/LightdmGreeterLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] BootLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: BootLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892903/+files/BootLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] LightdmGreeterLogOld.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: LightdmGreeterLogOld.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892916/+files/LightdmGreeterLogOld.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] CurrentDmesg.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892904/+files/CurrentDmesg.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] BootDmesg.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892902/+files/BootDmesg.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] CurrentDmesg.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892901/+files/CurrentDmesg.txt

** Description changed:

  With the Nouveau driver selected, my system freezes within a few minutes
  of boot if on battery, but only on heavy graphics load (flightgear in
  maximized window) if on mains.  The mouse pointer still moves, but
  neither the keyboard LEDs nor Alt+SysRq+b reboot work: the only way out
  is the power button.  The kernel log nearly always contains the line
  
  nouveau ![   PFIFO][:01:00.0] unhandled status 0x0080
  
  and sometimes other errors as well; the full log is attached.
  
  This does not occur with the nvidia-319 driver (which I hence switched
  back to, before running apport).  I first noticed it after upgrading to
  13.10, but suspect this was because I'd never done the above in Nouveau
  before, not an actual regression.
  
  Possibly related to bug 1241595.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.32  Wed Jun 19 15:51:20 
PDT 2013
   GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2
  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
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Oct 23 08:19:06 2013
  DistUpgraded: 2013-10-21 23:03:05,341 DEBUG enabling apt cron job
  DistroCodename: saucy
  DistroVariant: ubuntu
  DkmsStatus: nvidia-319, 319.32, 3.11.0-12-generic, x86_64: installed
  EcryptfsInUse: Yes
  GraphicsCard:
   NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
 Subsystem: Dell Device [1028:0494]
  InstallationDate: Installed on 2012-01-25 (636 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  JockeyStatus:
   kmod:nvidia_319_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:wl - Broadcom STA wireless driver (Proprietary, Disabled, Not in use) 
[auto-install]
   kmod:nvidia_304 - NVIDIA binary Xorg driver, kernel module and VDPAU library 
(Proprietary, Disabled, Not in use)
   kmod:nvidia_304_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:nvidia_319 - nvidia_319 (Proprietary, Enabled, Not in use)
  MachineType: Dell Inc. Latitude E6520
  MarkForUpload: True
  PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet splash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: Upgraded to saucy on 2013-10-21 (1 days ago)
  XorgConf:
   Section Device
Identifier  Default Device
Option  NoLogoTrue
   EndSection
  dmi.bios.date: 10/18/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A08
  dmi.board.name: 0J4TFW
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6520
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Oct 23 07:24:22 2013
  xserver.configfile: /etc/X11/xorg.conf
  xserver.errors:
   Failed to load /usr/lib/xorg/modules/libglamoregl.so: 
/usr/lib/xorg/modules/libglamoregl.so: undefined symbol: _glapi_tls_Context
   Failed to load module 

[Ubuntu-x-swat] [Bug 1243557] Lsusb.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1243557/+attachment/3892919/+files/Lsusb.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Lspci.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1243557/+attachment/3892918/+files/Lspci.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] MonitorsUser.xml.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: MonitorsUser.xml.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892920/+files/MonitorsUser.xml.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] LightdmLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: LightdmLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892917/+files/LightdmLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] ProcCpuinfo.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892921/+files/ProcCpuinfo.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] ProcEnviron.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892922/+files/ProcEnviron.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] ProcModules.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892924/+files/ProcModules.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] XorgLogOld.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: XorgLogOld.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892928/+files/XorgLogOld.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] XorgLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: XorgLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892927/+files/XorgLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-27 Thread Rebecca Palmer
** Attachment added: another Xorg log
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+attachment/3892947/+files/Xorg.0.log.old

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-27 Thread Rebecca Palmer
** Description changed:

  With the Nouveau driver selected, my system freezes within a few minutes
  of boot if on battery, but only on heavy graphics load (flightgear in
- maximized window) if on mains.  The mouse pointer still moves, but
- neither the keyboard LEDs nor Alt+SysRq+b reboot work: the only way out
- is the power button.  The kernel log nearly always contains the line
+ maximized window) if on mains.
+ 
+ The mouse pointer still moves at first, but often freezes later; the
+ keyboard LEDs do not react.  Sounds already playing continue until
+ finished, but don't repeat if set to (i.e. applications are frozen).
+ Alt+SysRq works (provided bug 1244312 is fixed first).
+ 
+ The kernel log nearly always contains the line
  
  nouveau ![   PFIFO][:01:00.0] unhandled status 0x0080
  
- and sometimes other errors as well; the full log is attached.
- 
- This does not occur with the nvidia-319 driver (which I hence switched
- back to, before running apport).  I first noticed it after upgrading to
- 13.10, but suspect this was because I'd never done the above in Nouveau
- before, not an actual regression.
+ and sometimes other errors as well, while the Xorg log often contains
+ EQ overflow errors; the full logs are attached.
+ 
+ This does not occur with the nvidia-319 driver; the apport logs in
+ comment 1 are with nvidia-319, in comments 3-30 (with some duplication
+ because apport-collect itself crashed) are with nouveau.
+ 
+ I first noticed it after upgrading to 13.10, but suspect this was
+ because I'd never done the above in Nouveau before, not an actual
+ regression.
  
  Possibly related to bug 1241595.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.32  Wed Jun 19 15:51:20 
PDT 2013
   GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2
  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
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Oct 23 08:19:06 2013
  DistUpgraded: 2013-10-21 23:03:05,341 DEBUG enabling apt cron job
  DistroCodename: saucy
  DistroVariant: ubuntu
  DkmsStatus: nvidia-319, 319.32, 3.11.0-12-generic, x86_64: installed
  EcryptfsInUse: Yes
  GraphicsCard:
   NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
 Subsystem: Dell Device [1028:0494]
  InstallationDate: Installed on 2012-01-25 (636 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  JockeyStatus:
   kmod:nvidia_319_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:wl - Broadcom STA wireless driver (Proprietary, Disabled, Not in use) 
[auto-install]
   kmod:nvidia_304 - NVIDIA binary Xorg driver, kernel module and VDPAU library 
(Proprietary, Disabled, Not in use)
   kmod:nvidia_304_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
   kmod:nvidia_319 - nvidia_319 (Proprietary, Enabled, Not in use)
  MachineType: Dell Inc. Latitude E6520
  MarkForUpload: True
  PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet splash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: Upgraded to saucy on 2013-10-21 (1 days ago)
  XorgConf:
   Section Device
Identifier  Default Device
Option  NoLogoTrue
   EndSection
  dmi.bios.date: 10/18/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A08
  dmi.board.name: 0J4TFW
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6520
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  

[Ubuntu-x-swat] [Bug 1243557] UdevLog.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892926/+files/UdevLog.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] xserver.devices.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: xserver.devices.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892931/+files/xserver.devices.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] xdpyinfo.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: xdpyinfo.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892930/+files/xdpyinfo.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Xrandr.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: Xrandr.txt
   https://bugs.launchpad.net/bugs/1243557/+attachment/3892929/+files/Xrandr.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-27 Thread Rebecca Palmer
** Attachment added: Xorg log; this one ran unusually long before crashing
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+attachment/3892946/+files/nouveau_longrun_Xorg.log

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] xserver.outputs.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: xserver.outputs.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892932/+files/xserver.outputs.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] UdevDb.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1243557/+attachment/3892925/+files/UdevDb.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] ProcInterrupts.txt

2013-10-27 Thread Rebecca Palmer
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1243557/+attachment/3892923/+files/ProcInterrupts.txt

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-27 Thread Rebecca Palmer
This bug seems to have become less frequent since my upstream kernel
test: reliably triggering it now requires being on battery and (rather
than or) heavy graphics load.  As no relevant packages are listed in the
apt log as upgraded since then, I suspect this test left a configuration
change behind.

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1126669] Re: [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash screen enabled

2013-10-27 Thread Rebecca Palmer
Haven't seen this since, closing.

** Changed in: nvidia-graphics-drivers (Ubuntu)
   Status: New = Invalid

-- 
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/1126669

Title:
  [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash
  screen enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1126669/+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 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-26 Thread Rebecca Palmer
With the latest upstream kernel (but not changing the userspace parts of
the driver), this bug still exists but takes longer to occur.

** Attachment added: kern.log
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+attachment/3892250/+files/kern.log

-- 
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/1243557

Title:
  [NVS 4200M] X freeze, unhandled status 0x0080

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1243557/+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 1243557] [NEW] [NVS 4200M] X freeze, unhandled status 0x00800000

2013-10-23 Thread Rebecca Palmer
Public bug reported:

With the Nouveau driver selected, my system freezes within a few minutes
of boot if on battery, but only on heavy graphics load (flightgear in
maximized window) if on mains.  The mouse pointer still moves, but
neither the keyboard LEDs nor Alt+SysRq+b reboot work: the only way out
is the power button.  The kernel log nearly always contains the line

nouveau ![   PFIFO][:01:00.0] unhandled status 0x0080

and sometimes other errors as well; the full log is attached.

This does not occur with the nvidia-319 driver (which I hence switched
back to, before running apport).  I first noticed it after upgrading to
13.10, but suspect this was because I'd never done the above in Nouveau
before, not an actual regression.

Possibly related to bug 1241595.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
Uname: Linux 3.11.0-12-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.32  Wed Jun 19 15:51:20 
PDT 2013
 GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8)
.tmp.unity.support.test.0:
 
ApportVersion: 2.12.5-0ubuntu2
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
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Wed Oct 23 08:19:06 2013
DistUpgraded: 2013-10-21 23:03:05,341 DEBUG enabling apt cron job
DistroCodename: saucy
DistroVariant: ubuntu
DkmsStatus: nvidia-319, 319.32, 3.11.0-12-generic, x86_64: installed
EcryptfsInUse: Yes
GraphicsCard:
 NVIDIA Corporation GF119M [NVS 4200M] [10de:1056] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: Dell Device [1028:0494]
InstallationDate: Installed on 2012-01-25 (636 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
JockeyStatus:
 kmod:nvidia_319_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
 kmod:wl - Broadcom STA wireless driver (Proprietary, Disabled, Not in use) 
[auto-install]
 kmod:nvidia_304 - NVIDIA binary Xorg driver, kernel module and VDPAU library 
(Proprietary, Disabled, Not in use)
 kmod:nvidia_304_updates - NVIDIA binary Xorg driver, kernel module and VDPAU 
library (Proprietary, Disabled, Not in use)
 kmod:nvidia_319 - nvidia_319 (Proprietary, Enabled, Not in use)
MachineType: Dell Inc. Latitude E6520
MarkForUpload: True
PlymouthDebug: Error: [Errno 13] Permission denied: 
'/var/log/plymouth-debug.log'
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=b491a34a-6045-4ad4-a2b8-b9ca018c5d41 ro quiet splash
SourcePackage: xserver-xorg-video-nouveau
UpgradeStatus: Upgraded to saucy on 2013-10-21 (1 days ago)
XorgConf:
 Section Device
Identifier  Default Device
Option  NoLogoTrue
 EndSection
dmi.bios.date: 10/18/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A08
dmi.board.name: 0J4TFW
dmi.board.vendor: Dell Inc.
dmi.board.version: A01
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd10/18/2011:svnDellInc.:pnLatitudeE6520:pvr01:rvnDellInc.:rn0J4TFW:rvrA01:cvnDellInc.:ct9:cvr:
dmi.product.name: Latitude E6520
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.46-1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
xserver.bootTime: Wed Oct 23 07:24:22 2013
xserver.configfile: /etc/X11/xorg.conf
xserver.errors:
 Failed to load /usr/lib/xorg/modules/libglamoregl.so: 
/usr/lib/xorg/modules/libglamoregl.so: undefined symbol: _glapi_tls_Context
 Failed to load module glamoregl (loader failed, 7)
 open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.14.3-3ubuntu2

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


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

** Attachment added: 

[Ubuntu-x-swat] [Bug 1174205] Re: Using pyopencl doesn't work and spits our ImportError

2013-10-22 Thread Rebecca Palmer
** Tags removed: i386
** Tags added: patch-accepted-debian saucy

-- 
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/1174205

Title:
  Using pyopencl doesn't work and spits our ImportError

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1174205/+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 1126669] [NEW] [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash screen enabled

2013-02-15 Thread Rebecca Palmer
Public bug reported:

After installing a recent batch of recommended updates, on the default
settings (nvidia-current driver, splash screen on but in text mode due
to bug 1063969) my computer always hangs on boot (showing the cryptswap
not ready message, and often either one about freshclam or one about
the crash report daemon, on top of the text splash screen).

This problem can be avoided either by disabling the splash screen (press
ESC once) before the hang, or switching to the Nouveau driver (which
uses a (garbled) graphical splash screen).

(12.10 amd64; not sure if this is in nvidia-graphics-drivers or
plymouth)

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

-- 
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/1126669

Title:
  [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash
  screen enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1126669/+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 1126669] Re: [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash screen enabled

2013-02-15 Thread Rebecca Palmer
Or maybe not...when I tried to get a log of this bug, I found it was no
longer there.  (And also that CTRL to bring up the Grub menu, as
documented at https://wiki.ubuntu.com/Plymouth#Debugging , doesn't
work.)

Leaving this open for now so anyone else with it can find the
workarounds, but I wouldn't start trying to fix it yet.

-- 
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/1126669

Title:
  [regression] GF119 [Quadro NVS 4200M] will not boot with (text) splash
  screen enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1126669/+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