[Desktop-packages] [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 Desktop
Packages, 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

Status in beignet package in Ubuntu:
  In Progress
Status in mesa package in Ubuntu:
  New
Status in pyopencl package in Ubuntu:
  Invalid

Bug description:
  In beignet (not pocl), tight loops involving OpenCL array creation and
  destruction, eg. repeated bCL=aCL+bCL (or other pyopencl.clmath
  operations) or repeated pyopencl.enqueue_copy(cq0,bCL.data,aCL.data),
  often hang the whole system, after a number of operations consistent
  with memory exhaustion.

  As waiting for queued operations to finish
  (pyopencl.enqueue_barrier(cq0).wait()) before attempting more avoids
  the bug, but dependencies between the operations (as in the
  bCL=aCL+bCL example) do not, this is probably a result of the
  "allocate memory" step being separate from, and faster than, the "do
  the operation" step, so being able to run ahead until it uses up all
  the memory.

  (Note that while the above wait() can be used as a workaround for this
  bug, it is usually faster to avoid frequent memory allocation
  altogether, by reusing existing arrays; for pyopencl.clmath, this
  means using pyopencl.tools.MemoryPool.)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in beignet package in Ubuntu:
  In Progress
Status in mesa package in Ubuntu:
  New
Status in pyopencl package in Ubuntu:
  Invalid

Bug description:
  In beignet (not pocl), tight loops involving OpenCL array creation and
  destruction, eg. repeated bCL=aCL+bCL (or other pyopencl.clmath
  operations) or repeated pyopencl.enqueue_copy(cq0,bCL.data,aCL.data),
  often hang the whole system, after a number of operations consistent
  with memory exhaustion.

  As waiting for queued operations to finish
  (pyopencl.enqueue_barrier(cq0).wait()) before attempting more avoids
  the bug, but dependencies between the operations (as in the
  bCL=aCL+bCL example) do not, this is probably a result of the
  "allocate memory" step being separate from, and faster than, the "do
  the operation" step, so being able to run ahead until it uses up all
  the memory.

  (Note that while the above wait() can be used as a workaround for this
  bug, it is usually faster to avoid frequent memory allocation
  altogether, by reusing existing arrays; for pyopencl.clmath, this
  means using pyopencl.tools.MemoryPool.)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1709399] Re: LLVM symbols should be versioned to avoid crashing applications that load mesa's swrast and also use a different libLLVM

2018-07-07 Thread Rebecca Palmer
Current llvm-toolchain-* packages do have versioned symbols (since
3.8.1-22 / 3.9.1-8 / 4.0-5: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=849098), but this 3.8 has not been backported.

Note that loading the *same* LLVM version twice can also crash, for a
different reason: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=852746

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

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to llvm-toolchain-3.8 in Ubuntu.
https://bugs.launchpad.net/bugs/1709399

Title:
  LLVM symbols should be versioned to avoid crashing applications that
  load mesa's swrast and also use a different libLLVM

Status in llvm-toolchain-3.8 package in Ubuntu:
  Confirmed

Bug description:
  The libgl1-mesa-dri-lts-xenial package depend on libLLVM-3.8.so.1 from
  the libllvm3.8v4 package; this library gets used when using software
  OpenGL rendering on a remote display. As a result, applications based
  on Qt5 that also use libLLVM features provided by another (newer) LLVM
  version will crash when invoked from a remote X terminal.

  Example: KDevelop5 uses libclang (and this libLLVM) for C/C++ parsing;
  I build it to use the LLVM/Clang 4.0 packages from llvm.org (and self-
  built Qt5 and KF5 libraries) and can thus not render to a remote X
  server (XQuartz on my Mac).

  There is an upstream LLVM patch which solves the issue by adding
  versioning info to libLLVM:

  https://bugs.kde.org/show_bug.cgi?id=373614
  https://reviews.llvm.org/D31524

  Please consider backporting this patch to LLVM 3.8 (or rebuilding the
  mesa package to use a (much) more recent LLVM version that already
  contains the patch).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-3.8/+bug/1709399/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in nvidia-graphics-drivers package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-375 package in Ubuntu:
  Confirmed
Status in theano package in Ubuntu:
  Invalid

Bug description:
  I had a problem with window edges after waking from suspend - see
  here: https://askubuntu.com/questions/896221/strange-artifacts-along-
  window-borders-after-waking-computer-from-sleep-mode/

  For this reason I upgraded to the newer driver, from 375.39 to 381.09.

  I have posted this question on AskUbuntu, with some extra information!
  
https://askubuntu.com/questions/905993/missing-libcuda-so-1-file-after-upgrading-to-newest-nvidia-driver

  Since upgrading, I have had to reinstall the Cuda Toolkit 8.0 (and CUDNN 
v5.1), however there seems to be a driver file missing, which prevents me from 
installing both Tensorflow and the gputools package in R, which build upon the 
Cuda Toolkit, which in turn needs the missing libcuda.so.1 file.
  Neither Tensorflow no gputools are able to locate the file: libcuda.so.1.
  Here is a similar issue, but with older drivers involved:  
https://github.com/tensorflow/tensorflow/issues/4078

  I have read that I could possibly create this file as it is a symlink, 
however I would prefer not to, as I do not know what other dependencies exist.
  Example of possible workaround:   
http://stackoverflow.com/questions/41890549/tensorflow-cannot-open-libcuda-so-1

  I am running Ubuntu 16.04.

  Can somebody see why this file is missing or propose a stable
  solution?

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in xserver-xorg-video-nouveau package in Ubuntu:
  Incomplete

Bug description:
  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).  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

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in flightgear package in Ubuntu:
  Invalid
Status in mesa package in Ubuntu:
  Confirmed
Status in stellarium package in Ubuntu:
  Invalid

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in flightgear package in Ubuntu:
  Incomplete
Status in mesa package in Ubuntu:
  Confirmed
Status in stellarium package in Ubuntu:
  Invalid

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  Incomplete
Status in “mesa” package in Ubuntu:
  Confirmed
Status in “stellarium” package in Ubuntu:
  Invalid

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  Incomplete
Status in “mesa” package in Ubuntu:
  Confirmed
Status in “stellarium” package in Ubuntu:
  Invalid

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  New
Status in “mesa” package in Ubuntu:
  Incomplete
Status in “stellarium” package in Ubuntu:
  Confirmed

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  New
Status in “mesa” package in Ubuntu:
  Incomplete
Status in “stellarium” package in Ubuntu:
  Confirmed

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  New
Status in “mesa” package in Ubuntu:
  New
Status in “stellarium” package in Ubuntu:
  Confirmed

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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.

Status in “flightgear” package in Ubuntu:
  New
Status in “mesa” package in Ubuntu:
  Incomplete
Status in “stellarium” package in Ubuntu:
  Confirmed

Bug description:
  Stellarium crashes a few seconds after displaying the startup screen
  with this message in terminal:

  nv10_state_fb.c:50: get_rt_format: Assertion `0' failed.

  I have an nvidia GeForce4 MX 4000 video card, and have installed
  libgl1-mesa-dri and libgl1-mesa-dri-experimental, version
  9.0-0ubuntu1.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: stellarium 0.11.3-1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic i686
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: i386
  Date: Wed Nov 14 22:52:36 2012
  InstallationDate: Installed on 2012-04-05 (224 days ago)
  InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MarkForUpload: True
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: stellarium
  UpgradeStatus: Upgraded to quantal on 2012-10-20 (25 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Confirmed

Bug description:
  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]

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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 

[Desktop-packages] [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 Desktop
Packages, 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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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).


[Desktop-packages] [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 Desktop
Packages, 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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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).  It cannot be tested with the nvidia-331 driver because
  bug 1333431 prevents suspend with that.

  Possibly relevant: this system has an 

[Desktop-packages] [Bug 1333431] Re: [regression] [Dell Latitude E6520] [NVS 4200M] Screen won't turn off, and isn't redrawn on resume

2014-06-23 Thread Rebecca Palmer
** Attachment added: partly redrawn screen
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1333431/+attachment/4137728/+files/IMG_20140623_222930.jpg

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

Title:
  [regression] [Dell Latitude E6520] [NVS 4200M] Screen won't turn off,
  and isn't redrawn on resume

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New

Bug description:
  In Trusty with the nvidia-331 (default) driver selected, the system
  won't suspend, and won't turn the screen off when powersave activates;
  the screen instead briefly blanks, flashes the Nvidia logo, then goes
  to the password entry box.

  On unlocking the system after this has happened (but not after a screen lock 
too brief to reach the powersave timeout), the screen goes black, then 
reappears in pieces as applications redraw.
  (Workaround for this part: opening and closing the Dash (Windows key twice) 
redraws the whole screen.)

  This did not happen in Saucy (nvidia-319); it also doesn't happen with
  the Nouveau driver (though bug 1333417 does, so that's not a
  workaround).

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

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: nvidia-331 331.38-0ubuntu7
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Jun 23 21:57:54 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-01-25 (880 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  SourcePackage: nvidia-graphics-drivers-331
  UpgradeStatus: Upgraded to trusty on 2014-04-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1333431] [NEW] [regression] [Dell Latitude E6520] [NVS 4200M] Screen won't turn off, and isn't redrawn on resume

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

In Trusty with the nvidia-331 (default) driver selected, the system
won't suspend, and won't turn the screen off when powersave activates;
the screen instead briefly blanks, flashes the Nvidia logo, then goes to
the password entry box.

On unlocking the system after this has happened (but not after a screen lock 
too brief to reach the powersave timeout), the screen goes black, then 
reappears in pieces as applications redraw.
(Workaround for this part: opening and closing the Dash (Windows key twice) 
redraws the whole screen.)

This did not happen in Saucy (nvidia-319); it also doesn't happen with
the Nouveau driver (though bug 1333417 does, so that's not a
workaround).

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

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: nvidia-331 331.38-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Jun 23 21:57:54 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2012-01-25 (880 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
SourcePackage: nvidia-graphics-drivers-331
UpgradeStatus: Upgraded to trusty on 2014-04-29 (55 days ago)

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


** Tags: amd64 apport-bug trusty

** Attachment added: syslog; bug is at Jun 23 20:09:20 and Jun 23 20:10:02
   https://bugs.launchpad.net/bugs/1333431/+attachment/4137723/+files/syslog

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

Title:
  [regression] [Dell Latitude E6520] [NVS 4200M] Screen won't turn off,
  and isn't redrawn on resume

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New

Bug description:
  In Trusty with the nvidia-331 (default) driver selected, the system
  won't suspend, and won't turn the screen off when powersave activates;
  the screen instead briefly blanks, flashes the Nvidia logo, then goes
  to the password entry box.

  On unlocking the system after this has happened (but not after a screen lock 
too brief to reach the powersave timeout), the screen goes black, then 
reappears in pieces as applications redraw.
  (Workaround for this part: opening and closing the Dash (Windows key twice) 
redraws the whole screen.)

  This did not happen in Saucy (nvidia-319); it also doesn't happen with
  the Nouveau driver (though bug 1333417 does, so that's not a
  workaround).

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

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: nvidia-331 331.38-0ubuntu7
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Jun 23 21:57:54 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-01-25 (880 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  SourcePackage: nvidia-graphics-drivers-331
  UpgradeStatus: Upgraded to trusty on 2014-04-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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]

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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]

To manage notifications about this bug go to:

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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]

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331 in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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]

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1315156

Title:
  nvidia-331 selected but nouveau loads

Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  New
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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]

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1174205

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

Status in “fglrx-installer” package in Ubuntu:
  Confirmed
Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  Fix Released
Status in “pyopencl” package in Ubuntu:
  Fix Released

Bug description:
  Pyopencl doesn't work on raging, the following error message is
  generated:

  Python 2.7.4 (default, Apr 19 2013, 18:32:33)
  [GCC 4.7.3] on linux2
  Type help, copyright, credits or license for more information.
   import pyopencl
  Traceback (most recent call last):
    File stdin, line 1, in module
    File /usr/lib/python2.7/dist-packages/pyopencl/__init__.py, line 4, in 
module
  import pyopencl._cl as _cl
  ImportError: /usr/lib/python2.7/dist-packages/pyopencl/_cl.so: symbol 
clRetainDevice, version OPENCL_1.2 not defined in file libOpenCL.so.1 with link 
time reference

  I am using the following drivers:
  adrian@toad:~$ dpkg -l | grep nvidia
  ii  nvidia-304-updates304.88-0ubuntu2 
i386 NVIDIA binary Xorg driver, kernel module and VDPAU 
library
  ii  nvidia-cg-dev:i3863.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language (headers)
  ii  nvidia-cg-toolkit 3.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language
  ii  nvidia-common 1:0.2.76
i386 transitional package for ubuntu-drivers-common
  ii  nvidia-settings-304-updates   304.88-0ubuntu1 
i386 Tool for configuring the NVIDIA graphics driver


  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: python-pyopencl 2012.1-1ubuntu4
  ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
  Uname: Linux 3.8.0-19-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: i386
  Date: Mon Apr 29 09:56:38 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_ZA.UTF-8
   SHELL=/bin/bash
  SourcePackage: pyopencl
  UpgradeStatus: Upgraded to raring on 2013-04-27 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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
  

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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: 

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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
  

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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: 

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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
  

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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
  

[Desktop-packages] [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 Desktop
Packages, 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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Triaged

Bug description:
  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 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, while the Xorg log often contains
  EQ overflow errors; the full logs are attached.

  WORKAROUND: This does not occur with the nvidia-319 driver.

  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: 

[Desktop-packages] [Bug 1243557] Re: [NVS 4200M] X freeze, unhandled status 0x00800000

2014-01-09 Thread Rebecca Palmer
It's worse in Trusty, occurring immediately on heavy graphics load and
within a few minutes even in ordinary use.

The attached is the output of apport-bug xserver-xorg-video-nouveau
--save (apport-collect isn't installed by default) after rebooting, and
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).

It also displayed a send problem report? on reboot, which I OK'd but
suspect is essentially the same information.

** Attachment added: xcrash-14_04-log.txt
   
https://bugs.launchpad.net/nouveau/+bug/1243557/+attachment/3944673/+files/xcrash-14_04-log.txt

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

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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  Incomplete

Bug description:
  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 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, 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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1174205

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

Status in “fglrx-installer” package in Ubuntu:
  Confirmed
Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  Confirmed
Status in “pyopencl” package in Ubuntu:
  Confirmed

Bug description:
  Pyopencl doesn't work on raging, the following error message is
  generated:

  Python 2.7.4 (default, Apr 19 2013, 18:32:33)
  [GCC 4.7.3] on linux2
  Type help, copyright, credits or license for more information.
   import pyopencl
  Traceback (most recent call last):
    File stdin, line 1, in module
    File /usr/lib/python2.7/dist-packages/pyopencl/__init__.py, line 4, in 
module
  import pyopencl._cl as _cl
  ImportError: /usr/lib/python2.7/dist-packages/pyopencl/_cl.so: symbol 
clRetainDevice, version OPENCL_1.2 not defined in file libOpenCL.so.1 with link 
time reference

  I am using the following drivers:
  adrian@toad:~$ dpkg -l | grep nvidia
  ii  nvidia-304-updates304.88-0ubuntu2 
i386 NVIDIA binary Xorg driver, kernel module and VDPAU 
library
  ii  nvidia-cg-dev:i3863.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language (headers)
  ii  nvidia-cg-toolkit 3.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language
  ii  nvidia-common 1:0.2.76
i386 transitional package for ubuntu-drivers-common
  ii  nvidia-settings-304-updates   304.88-0ubuntu1 
i386 Tool for configuring the NVIDIA graphics driver


  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: python-pyopencl 2012.1-1ubuntu4
  ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
  Uname: Linux 3.8.0-19-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: i386
  Date: Mon Apr 29 09:56:38 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_ZA.UTF-8
   SHELL=/bin/bash
  SourcePackage: pyopencl
  UpgradeStatus: Upgraded to raring on 2013-04-27 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1174205

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

Status in “fglrx-installer” package in Ubuntu:
  Confirmed
Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  Confirmed
Status in “pyopencl” package in Ubuntu:
  Confirmed

Bug description:
  Pyopencl doesn't work on raging, the following error message is
  generated:

  Python 2.7.4 (default, Apr 19 2013, 18:32:33)
  [GCC 4.7.3] on linux2
  Type help, copyright, credits or license for more information.
   import pyopencl
  Traceback (most recent call last):
    File stdin, line 1, in module
    File /usr/lib/python2.7/dist-packages/pyopencl/__init__.py, line 4, in 
module
  import pyopencl._cl as _cl
  ImportError: /usr/lib/python2.7/dist-packages/pyopencl/_cl.so: symbol 
clRetainDevice, version OPENCL_1.2 not defined in file libOpenCL.so.1 with link 
time reference

  I am using the following drivers:
  adrian@toad:~$ dpkg -l | grep nvidia
  ii  nvidia-304-updates304.88-0ubuntu2 
i386 NVIDIA binary Xorg driver, kernel module and VDPAU 
library
  ii  nvidia-cg-dev:i3863.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language (headers)
  ii  nvidia-cg-toolkit 3.1.0013-1  
i386 Cg Toolkit - GPU Shader Authoring Language
  ii  nvidia-common 1:0.2.76
i386 transitional package for ubuntu-drivers-common
  ii  nvidia-settings-304-updates   304.88-0ubuntu1 
i386 Tool for configuring the NVIDIA graphics driver


  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: python-pyopencl 2012.1-1ubuntu4
  ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
  Uname: Linux 3.8.0-19-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: i386
  Date: Mon Apr 29 09:56:38 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_ZA.UTF-8
   SHELL=/bin/bash
  SourcePackage: pyopencl
  UpgradeStatus: Upgraded to raring on 2013-04-27 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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  NoLogo

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in Accelerated Xorg driver for nVidia cards:
  Confirmed
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in Accelerated Xorg driver for nVidia cards:
  Unknown
Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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: 

[Desktop-packages] [Bug 1204526] Re: Backup location does not exist after suspend

2013-11-07 Thread Rebecca Palmer
No longer present in 13.10.

** Changed in: deja-dup (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/1204526

Title:
  Backup location does not exist after suspend

Status in “deja-dup” package in Ubuntu:
  Invalid

Bug description:
  If the system is suspended during a backup, on resume the backup fails
  with an error message that the backup location (an external hard
  drive) does not exist, while the file manager (which automatically
  appears on resume with this drive connected, whether or not a backup
  is in progress) says it does.

  Resume Later doesn't help much here, as it appears to treat the
  resumed backup as a new incremental (i.e. re-scan for changed files,
  which on my system takes longer than the actual backing up).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1204526/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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: 

[Desktop-packages] [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 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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: 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: 

[Desktop-packages] [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
  

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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
  version.nvidia-graphics-drivers: nvidia-graphics-drivers 

[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 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, 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: 

[Desktop-packages] [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 Desktop
Packages, 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

Status in “nvidia-graphics-drivers” package in Ubuntu:
  Invalid

Bug description:
  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)

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1243557

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

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  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 

[Desktop-packages] [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: 

[Desktop-packages] [Bug 1243158] Re: [regression 13.10] [NVS 4200M] black screen with monitor setup error box after login

2013-10-23 Thread Rebecca Palmer
Possibly relevant: this machine had ocl-icd-libopencl1 installed, and
nvidia-319 Conflicts: with that.  If that is the problem, removing
libopencl1 from nvidia-319 (as already proposed to fix bug 1174205)
would also fix this bug.

** Tags added: patch-accepted-debian

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

Title:
  [regression 13.10] [NVS 4200M] black screen with monitor setup error
  box after login

Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  New
Status in “ubuntu-release-upgrader” package in Ubuntu:
  New

Bug description:
  After upgrading to 13.10, the login screen was in reduced resolution,
  and after logging in I got a black screen with an error box that
  monitor setup had tried and failed to find a supported resolution
  (can't remember the exact wording), also in reduced resolution.

  The text tty (Ctrl+Alt+F1) was functional, but trying to start any
  graphical applications from it failed with cannot open display.
  Checking /var/log/Xorg.0.log from there found a failed to load NVIDIA
  kernel module error.

  dpkg -l *nvidia* listed nvidia-310 as installed and nvidia-304 as
  removed-conffiles remaining.  After purging all of those (sudo apt-get
  purge package(s)), the system would start normally on Nouveau, but
  would then hang (mouse pointer movable but other screen contents
  frozen) after a minute or two.  Reinstalling compiz didn't help.

  I then enabled the nvidia 319 driver from System Settings  Software 
  Updates  Additional Drivers, and the system then worked.

  This dialog now listed only 304 and 319, suggesting it is known that
  nvidia-310 doesn't work in 13.10, and the nvidia-310 description now
  says it is a transitional package to nvidia-319...but this evidently
  hadn't worked (nvidia-319 had not been auto-installed.

  From upgrade apt.log:
Installing nvidia-319 as Depends of nvidia-310
  Installing nvidia-settings-319 as Recommends of nvidia-319
Installing libvdpau1 as Depends of nvidia-settings-319
  nvidia-319:amd64 Recommends on nvidia-persistenced [ amd64 ]  none  ( 
none ) can't be satisfied!
  [...]
  Investigating (0) nvidia-310 [ amd64 ]  310.44-0ubuntu2 - 319.32-0ubuntu7  
( restricted/misc )
  Broken nvidia-310:amd64 Depends on nvidia-319 [ amd64 ]  none - 
319.32-0ubuntu7  ( restricted/misc )
Considering nvidia-319:amd64 1 as a solution to nvidia-310:amd64 0
Holding Back nvidia-310:amd64 rather than change nvidia-319:amd64
  [...]
   Try to Re-Instate (1) nvidia-310:amd64

  
  (Possibly related: I now get about 3 System program problem detected 
prompts on startup, instead of the one I used to get in 13.04; I don't know 
what they're for as I don't enter my password at unknown prompts.)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1243158] Re: [regression 13.10] [NVS 4200M] black screen with monitor setup error box after login

2013-10-22 Thread Rebecca Palmer
** Attachment added: apt-term.log
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1243158/+attachment/3887303/+files/apt-term.log

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

Title:
  [regression 13.10] [NVS 4200M] black screen with monitor setup error
  box after login

Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  New
Status in “ubuntu-release-upgrader” package in Ubuntu:
  New

Bug description:
  After upgrading to 13.10, the login screen was in reduced resolution,
  and after logging in I got a black screen with an error box that
  monitor setup had tried and failed to find a supported resolution
  (can't remember the exact wording), also in reduced resolution.

  The text tty (Ctrl+Alt+F1) was functional, but trying to start any
  graphical applications from it failed with cannot open display.
  Checking /var/log/Xorg.0.log from there found a failed to load NVIDIA
  kernel module error.

  dpkg -l *nvidia* listed nvidia-310 as installed and nvidia-304 as
  removed-conffiles remaining.  After purging all of those (sudo apt-get
  purge package(s)), the system would start normally on Nouveau, but
  would then hang (mouse pointer movable but other screen contents
  frozen) after a minute or two.  Reinstalling compiz didn't help.

  I then enabled the nvidia 319 driver from System Settings  Software 
  Updates  Additional Drivers, and the system then worked.

  This dialog now listed only 304 and 319, suggesting it is known that
  nvidia-310 doesn't work in 13.10, and the nvidia-310 description now
  says it is a transitional package to nvidia-319...but this evidently
  hadn't worked (nvidia-319 had not been auto-installed.

  From upgrade apt.log:
Installing nvidia-319 as Depends of nvidia-310
  Installing nvidia-settings-319 as Recommends of nvidia-319
Installing libvdpau1 as Depends of nvidia-settings-319
  nvidia-319:amd64 Recommends on nvidia-persistenced [ amd64 ]  none  ( 
none ) can't be satisfied!
  [...]
  Investigating (0) nvidia-310 [ amd64 ]  310.44-0ubuntu2 - 319.32-0ubuntu7  
( restricted/misc )
  Broken nvidia-310:amd64 Depends on nvidia-319 [ amd64 ]  none - 
319.32-0ubuntu7  ( restricted/misc )
Considering nvidia-319:amd64 1 as a solution to nvidia-310:amd64 0
Holding Back nvidia-310:amd64 rather than change nvidia-319:amd64
  [...]
   Try to Re-Instate (1) nvidia-310:amd64

  
  (Possibly related: I now get about 3 System program problem detected 
prompts on startup, instead of the one I used to get in 13.04; I don't know 
what they're for as I don't enter my password at unknown prompts.)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1243158] [NEW] [regression 13.10] [NVS 4200M] black screen with monitor setup error box after login

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

After upgrading to 13.10, the login screen was in reduced resolution,
and after logging in I got a black screen with an error box that monitor
setup had tried and failed to find a supported resolution (can't
remember the exact wording), also in reduced resolution.

The text tty (Ctrl+Alt+F1) was functional, but trying to start any
graphical applications from it failed with cannot open display.
Checking /var/log/Xorg.0.log from there found a failed to load NVIDIA
kernel module error.

dpkg -l *nvidia* listed nvidia-310 as installed and nvidia-304 as
removed-conffiles remaining.  After purging all of those (sudo apt-get
purge package(s)), the system would start normally on Nouveau, but
would then hang (mouse pointer movable but other screen contents frozen)
after a minute or two.  Reinstalling compiz didn't help.

I then enabled the nvidia 319 driver from System Settings  Software 
Updates  Additional Drivers, and the system then worked.

This dialog now listed only 304 and 319, suggesting it is known that
nvidia-310 doesn't work in 13.10, and the nvidia-310 description now
says it is a transitional package to nvidia-319...but this evidently
hadn't worked (nvidia-319 had not been auto-installed.

From upgrade apt.log:
  Installing nvidia-319 as Depends of nvidia-310
Installing nvidia-settings-319 as Recommends of nvidia-319
  Installing libvdpau1 as Depends of nvidia-settings-319
nvidia-319:amd64 Recommends on nvidia-persistenced [ amd64 ]  none  ( 
none ) can't be satisfied!
[...]
Investigating (0) nvidia-310 [ amd64 ]  310.44-0ubuntu2 - 319.32-0ubuntu7  ( 
restricted/misc )
Broken nvidia-310:amd64 Depends on nvidia-319 [ amd64 ]  none - 
319.32-0ubuntu7  ( restricted/misc )
  Considering nvidia-319:amd64 1 as a solution to nvidia-310:amd64 0
  Holding Back nvidia-310:amd64 rather than change nvidia-319:amd64
[...]
 Try to Re-Instate (1) nvidia-310:amd64


(Possibly related: I now get about 3 System program problem detected prompts 
on startup, instead of the one I used to get in 13.04; I don't know what 
they're for as I don't enter my password at unknown prompts.)

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

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: apt.log
   https://bugs.launchpad.net/bugs/1243158/+attachment/3887302/+files/apt.log

** Also affects: ubuntu-release-upgrader (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  [regression 13.10] [NVS 4200M] black screen with monitor setup error
  box after login

Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  New
Status in “ubuntu-release-upgrader” package in Ubuntu:
  New

Bug description:
  After upgrading to 13.10, the login screen was in reduced resolution,
  and after logging in I got a black screen with an error box that
  monitor setup had tried and failed to find a supported resolution
  (can't remember the exact wording), also in reduced resolution.

  The text tty (Ctrl+Alt+F1) was functional, but trying to start any
  graphical applications from it failed with cannot open display.
  Checking /var/log/Xorg.0.log from there found a failed to load NVIDIA
  kernel module error.

  dpkg -l *nvidia* listed nvidia-310 as installed and nvidia-304 as
  removed-conffiles remaining.  After purging all of those (sudo apt-get
  purge package(s)), the system would start normally on Nouveau, but
  would then hang (mouse pointer movable but other screen contents
  frozen) after a minute or two.  Reinstalling compiz didn't help.

  I then enabled the nvidia 319 driver from System Settings  Software 
  Updates  Additional Drivers, and the system then worked.

  This dialog now listed only 304 and 319, suggesting it is known that
  nvidia-310 doesn't work in 13.10, and the nvidia-310 description now
  says it is a transitional package to nvidia-319...but this evidently
  hadn't worked (nvidia-319 had not been auto-installed.

  From upgrade apt.log:
Installing nvidia-319 as Depends of nvidia-310
  Installing nvidia-settings-319 as Recommends of nvidia-319
Installing libvdpau1 as Depends of nvidia-settings-319
  nvidia-319:amd64 Recommends on nvidia-persistenced [ amd64 ]  none  ( 
none ) can't be satisfied!
  [...]
  Investigating (0) nvidia-310 [ amd64 ]  310.44-0ubuntu2 - 319.32-0ubuntu7  
( restricted/misc )
  Broken nvidia-310:amd64 Depends on nvidia-319 [ amd64 ]  none - 
319.32-0ubuntu7  ( restricted/misc )
Considering nvidia-319:amd64 1 as a solution to nvidia-310:amd64 0
Holding Back nvidia-310:amd64 rather than change nvidia-319:amd64
  [...]
   Try to Re-Instate (1) nvidia-310:amd64

  
  (Possibly related: I now get about 3 System program problem detected 

[Desktop-packages] [Bug 1204526] [NEW] Backup location does not exist after suspend

2013-07-24 Thread Rebecca Palmer
Public bug reported:

If the system is suspended during a backup, on resume the backup fails
with an error message that the backup location (an external hard drive)
does not exist, while the file manager (which automatically appears on
resume with this drive connected, whether or not a backup is in
progress) says it does.

Resume Later doesn't help much here, as it appears to treat the
resumed backup as a new incremental (i.e. re-scan for changed files,
which on my system takes longer than the actual backing up).

** Affects: deja-dup (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/1204526

Title:
  Backup location does not exist after suspend

Status in “deja-dup” package in Ubuntu:
  New

Bug description:
  If the system is suspended during a backup, on resume the backup fails
  with an error message that the backup location (an external hard
  drive) does not exist, while the file manager (which automatically
  appears on resume with this drive connected, whether or not a backup
  is in progress) says it does.

  Resume Later doesn't help much here, as it appears to treat the
  resumed backup as a new incremental (i.e. re-scan for changed files,
  which on my system takes longer than the actual backing up).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1204526/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 696816] Re: some PDF documents use 2-3GB memory

2013-05-10 Thread Rebecca Palmer
Fixed in amd64 13.04 (and possibly earlier).

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to poppler in Ubuntu.
https://bugs.launchpad.net/bugs/696816

Title:
  some PDF documents use 2-3GB memory

Status in “poppler” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: evince

  On opening the document http://uk.arxiv.org/pdf/1012.5738v1 in Evince,
  memory usage (as reported by System Monitor) rises to 2-3GB (requiring
  swap use) and the mouse and keyboard temporarily become unresponsive.
  They recover enough to scroll away from the affected (first) page
  after about 10-20sec, and the memory is freed after about 30sec.

  While the symptoms resemble bug 138343, that related to large bitmaps
  and has been fixed, while this trigger contains no images; it may be
  more closely related to bug 188079, but neither
  http://uk.arxiv.org/pdf/0801.4602 nor
  http://uk.arxiv.org/pdf/0801.4754 trigger it in the current version.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: evince 2.32.0-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
  Uname: Linux 2.6.35-24-generic x86_64
  Architecture: amd64
  Date: Mon Jan  3 14:36:13 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/evince
  ProcEnviron:
   LANG=en_GB.utf8
   SHELL=/bin/bash
  SourcePackage: evince
  XsessionErrors:
   (polkit-gnome-authentication-agent-1:2206): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
   (nautilus:2205): GConf-CRITICAL **: gconf_value_free: assertion `value != 
NULL' failed

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in “nvidia-graphics-drivers” package in Ubuntu:
  New

Bug description:
  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)

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [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 Desktop
Packages, 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

Status in “nvidia-graphics-drivers” package in Ubuntu:
  New

Bug description:
  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)

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/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1076034] Re: Quantal's eclipse doesn't work with Android Developer Tools plug-in

2012-12-30 Thread Rebecca Palmer
 Only problem is that none of the ADT toolbar buttons show up... for example 
 the button to launch an emulator.
Are these actions available from the Window menu? (Android SDK Manager, AVD 
Manager, Run Android Lint)
Does the Run button work?  (On my system, this will open a new emulator if 
necessary.)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to eclipse in Ubuntu.
https://bugs.launchpad.net/bugs/1076034

Title:
  Quantal's eclipse doesn't work with Android Developer Tools plug-in

Status in “eclipse” package in Ubuntu:
  Confirmed

Bug description:
  I have been using the ADT plugins with eclipse from universe in 12.04
  and earlier releases. After upgrading to 12.10, ADT no longer works. I
  tried deleting my ~/.eclipse directory and reinstalling ADT; I also
  tried installing ADT as root, as suggested in one Ask Ubuntu answer.
  No matter what I do, the Android-related buttons (SDK manager, for
  example) don't seem to show up in eclipse.

  The ADT plug-in works fine with eclipse downloaded from eclipse.org --
  but for the packaged version of eclipse, it seems this is a regression
  which should be fixed.

  Running Quantal amd64 on a Dell Inspiron 1545. ADT installed as
  described here: http://developer.android.com/sdk/installing
  /installing-adt.html

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1076034] Re: Quantal's eclipse doesn't work with Android Developer Tools plug-in

2012-12-27 Thread Rebecca Palmer
User-installed Eclipse plugins are kept in a version-dependent directory
( $HOME/.eclipse/org.eclipse.platform_version_id/plugins ) and hence
not carried over on upgrade.  Furthermore, 12.10 does not include the
main Eclipse site as a plugin source by default (earlier Ubuntu versions
did), so trying to (re)install plugins that depend on optional parts of
Eclipse (e.g. Android ADT depends on Eclipse WST) will fail with an
error message.

To fix this, go to Window  Preferences  Install/Update  Available
Software Sites and add http://download.eclipse.org/releases/juno (juno
is the 3.8/4.2 release, as in 12.10 and 13.04).

After doing this, Android ADT works for me (Ubuntu 12.10 amd64, Android
SDK 20).  Does this work for you, or is this bug something else?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to eclipse in Ubuntu.
https://bugs.launchpad.net/bugs/1076034

Title:
  Quantal's eclipse doesn't work with Android Developer Tools plug-in

Status in “eclipse” package in Ubuntu:
  Confirmed

Bug description:
  I have been using the ADT plugins with eclipse from universe in 12.04
  and earlier releases. After upgrading to 12.10, ADT no longer works. I
  tried deleting my ~/.eclipse directory and reinstalling ADT; I also
  tried installing ADT as root, as suggested in one Ask Ubuntu answer.
  No matter what I do, the Android-related buttons (SDK manager, for
  example) don't seem to show up in eclipse.

  The ADT plug-in works fine with eclipse downloaded from eclipse.org --
  but for the packaged version of eclipse, it seems this is a regression
  which should be fixed.

  Running Quantal amd64 on a Dell Inspiron 1545. ADT installed as
  described here: http://developer.android.com/sdk/installing
  /installing-adt.html

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 891574] Re: eclipse contains out of date software sites

2012-12-27 Thread Rebecca Palmer
*** This bug is a duplicate of bug 873187 ***
https://bugs.launchpad.net/bugs/873187

** This bug has been marked a duplicate of bug 873187
   Eclipse does not include the relevant software plugin repository

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to eclipse in Ubuntu.
https://bugs.launchpad.net/bugs/891574

Title:
  eclipse contains out of date software sites

Status in “eclipse” package in Ubuntu:
  New

Bug description:
  ubu 11.10 eclipse 3.7 installed via ubu app store

  comes with available software sites of

  http://download.eclipse.org/release/helios
  http://download.eclipse.org/eclipse/updates/3.6

  instead of

  http://download.eclipse.org/release/indigo
  http://download.eclipse.org/eclipse/updates/3.7

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 873187] Re: Eclipse does not include the relevant software plugin repository

2012-12-27 Thread Rebecca Palmer
Fixed in 12.10...by removing this repository altogether, which brings
back bug 477944 (can't install plugins).

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to eclipse in Ubuntu.
https://bugs.launchpad.net/bugs/873187

Title:
  Eclipse does not include the relevant software plugin repository

Status in “eclipse” package in Ubuntu:
  Confirmed

Bug description:
  Among the 'Available Update Sites' listing in Eclipse's preferences
  are repositories for the previous releases (including updates for 3.4,
  3.5, 3.6 and a release repo for helios). However, the version of
  Eclipse in Ubuntu is 3.7 (Indigo) so the corresponding repository for
  indigo: http://download.eclipse.org/releases/indigo/ should be
  included there and enabled by default. The absence of this repository
  and the fact that eclipse-gef is not packaged means that certain
  plugins (like the Android Development Tools plugin) will fail to
  install without adding the indigo repository first.

  In earlier releases, the lack of this repository bug #474888 and
  others, and it was fixed by including the corresponding software
  repositories for helios (the previous Eclipse release).

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: eclipse 3.7.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic x86_64
  ApportVersion: 1.23-0ubuntu1
  Architecture: amd64
  Date: Thu Oct 13 12:54:21 2011
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta amd64 (20110921.2)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: eclipse
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 485167] Re: There should be a eclipse.ini file in user's home directory

2012-12-27 Thread Rebecca Palmer
Eclipse does have per-user configuration, at
$HOME/.eclipse/org.eclipse.platform_$version_$id/configuration/ ;
however, I don't know if that particular setting can be changed there.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to eclipse in Ubuntu.
https://bugs.launchpad.net/bugs/485167

Title:
  There should be a eclipse.ini file in user's home directory

Status in “eclipse” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: eclipse

  Hi:

  I noticed that eclipse uses the configuration file
  /usr/lib/eclipse/eclipse.ini, which contains amongst other settings,
  the maximum amount of heap space for the JVM.  It seems to me that
  such a setting will increasingly be modified by end-users, and thus
  should be configurable from a file such as ~/.eclipse/eclipse.ini
  (i.e., in the user's home directory).  This would make it behave the
  same way as most linux programs out there.  Is there some reason that
  this isn't done?

  Reading the bug report at
  https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/43162, comment
  #5
  (https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/43162/comments/5)
  states that they've very recently (a few days ago) moved the
  eclipse.ini to be in /etc.  Again, this doesn't seem to fit the common
  model of having configuration be overrideable by a file in the user's
  home directory.

  Cheers

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 779366] Re: [Upstream] Font Nimbus Sans L squashed in Impress slideshow

2012-10-16 Thread Rebecca Palmer
Still present in Ubuntu 12.04 (LibreOffice 3.5.4.2 Build ID:
350m1(Build:2)), and agreed that it appears to be a duplicate of
freedesktop-bugs 47673 (also affects the fonts Century Schoolbook L, URW
Palladio L and Courier 10 Pitch, and only appears with hardware
acceleration on).

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/779366

Title:
  [Upstream] Font Nimbus Sans L squashed in Impress slideshow

Status in LibreOffice Productivity Suite:
  Incomplete
Status in “libreoffice” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: libreoffice

  1) lsb_release -rd
  Description:  Ubuntu 11.10
  Release:  11.10

  2)  apt-cache policy libreoffice-impress
  libreoffice-impress:
    Installed: 1:3.4.3-3ubuntu2
    Candidate: 1:3.4.3-3ubuntu2
    Version table:
   *** 1:3.4.3-3ubuntu2 0
  500 http://us.archive.ubuntu.com/ubuntu/ oneiric/main i386 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen in Impress via the Terminal:

  cd ~/Desktop  wget
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119346/+files/fontbug.odp
   loimpress --nologo fontbug.odp

  is the text with Nimbus Sans L font looks in edit view as it does in
  slide show.

  4) What happens instead is the font shows differently in slide show
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119348/+files/fontbug_slideshow.png
  versus edit mode
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119347/+files/fontbug_editview.png

  WORKAROUND: Uncheck Hardware Acceleration.

  ORIGINAL REPORTER COMMENTS: Observed in amd64 Natty (LibreOffice); not
  present in amd64 Maverick (OpenOffice).

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/779366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 779366] Re: [Upstream] Some fonts squashed in Impress slideshow

2012-10-16 Thread Rebecca Palmer
** Summary changed:

- [Upstream] Font Nimbus Sans L squashed in Impress slideshow
+ [Upstream] Some fonts squashed in Impress slideshow

** Description changed:

  Binary package hint: libreoffice
+ 
+ Text in some fonts, including Nimbus Sans L, Century Schoolbook L,
+ Courier 10 Pitch and URW Palladio L, appears squashed in slideshow mode.
  
  1) lsb_release -rd
  Description:  Ubuntu 11.10
  Release:  11.10
  
  2)  apt-cache policy libreoffice-impress
  libreoffice-impress:
    Installed: 1:3.4.3-3ubuntu2
    Candidate: 1:3.4.3-3ubuntu2
    Version table:
   *** 1:3.4.3-3ubuntu2 0
  500 http://us.archive.ubuntu.com/ubuntu/ oneiric/main i386 Packages
  100 /var/lib/dpkg/status
  
  3) What is expected to happen in Impress via the Terminal:
  
  cd ~/Desktop  wget
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119346/+files/fontbug.odp
   loimpress --nologo fontbug.odp
  
  is the text with Nimbus Sans L font looks in edit view as it does in
  slide show.
  
  4) What happens instead is the font shows differently in slide show
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119348/+files/fontbug_slideshow.png
  versus edit mode
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119347/+files/fontbug_editview.png
  
- WORKAROUND: Uncheck Hardware Acceleration.
+ WORKAROUND: Uncheck Hardware Acceleration (Tools  Options  LibreOffice
+  View)
  
- ORIGINAL REPORTER COMMENTS: Observed in amd64 Natty (LibreOffice); not
- present in amd64 Maverick (OpenOffice).
+ Also observed in amd64 11.04 and amd64 12.04 (LibreOffice); not present
+ in amd64 10.10 (OpenOffice).

** Tags added: precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/779366

Title:
  [Upstream] Some fonts squashed in Impress slideshow

Status in LibreOffice Productivity Suite:
  Incomplete
Status in “libreoffice” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: libreoffice

  Text in some fonts, including Nimbus Sans L, Century Schoolbook L,
  Courier 10 Pitch and URW Palladio L, appears squashed in slideshow
  mode.

  1) lsb_release -rd
  Description:  Ubuntu 11.10
  Release:  11.10

  2)  apt-cache policy libreoffice-impress
  libreoffice-impress:
    Installed: 1:3.4.3-3ubuntu2
    Candidate: 1:3.4.3-3ubuntu2
    Version table:
   *** 1:3.4.3-3ubuntu2 0
  500 http://us.archive.ubuntu.com/ubuntu/ oneiric/main i386 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen in Impress via the Terminal:

  cd ~/Desktop  wget
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119346/+files/fontbug.odp
   loimpress --nologo fontbug.odp

  is the text with Nimbus Sans L font looks in edit view as it does in
  slide show.

  4) What happens instead is the font shows differently in slide show
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119348/+files/fontbug_slideshow.png
  versus edit mode
  
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/779366/+attachment/2119347/+files/fontbug_editview.png

  WORKAROUND: Uncheck Hardware Acceleration (Tools  Options 
  LibreOffice  View)

  Also observed in amd64 11.04 and amd64 12.04 (LibreOffice); not
  present in amd64 10.10 (OpenOffice).

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/779366/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp