[Bug 1009312] Re: 10de:0426 GPU loads unreliably, possible kernel timeout

2014-09-05 Thread Kyle Auble
Just wanted to add here that I think I've found an even simpler
workaround. It looks like passing pci=bios as a kernel parameter
consistently allows the GPU to load, regardless of kernel version or
power source. I haven't tested it a whole lot, but so far it has worked
100%.

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

Title:
  10de:0426 GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: 10de:0426 GPU loads unreliably, possible kernel timeout

2014-07-04 Thread Kyle Auble
It's been a while, but I've found the time to dig much deeper into this
and familiarize myself with the kernel code some. Actually, I feel
comfortable with the idea of directly contacting the appropriate mailing
list now so this is more to keep the record up-to-date than a request
for more triage.

Anyways, after just walking through the kernel code, I first realized
that the first sign of the bug (the 30ms gap) was occurring somewhere
within the function pci_scan_child_bus (in drivers/pci/probe.c), between
when it invokes the function pci_scan_slot (also in drivers/pci/probe.c)
and the function pcibios_fixup_bus (in my case, under
arch/x86/pci/common.c)

From there, I began adding dev_info statements around function calls
that would be executed in between, then looked between whichever 2
messages the gap occurred between to further narrow down the problem.
After a few rounds of this, I found the delay consistently appearing
within the function pcie_aspm_configure_common_clock (in
drivers/pci/pcie/aspm.c) After a little research about what the PCIe
common clock is about, it actually explains several aspects of this bug.
Booting the computer from battery power would influence the power state
of the device, which is what ASPM is all about. And it turns out the
discrepancy of 24ms between a good boot and a bad boot is precisely the
length of time the PCIe standard defines as a timeout for link training.

Unfortunately, I don't know how, or even if, the two commits I found
earlier directly tie into this. It seems there's a really weird race
condition or resource fight going on. I'm not exactly sure how to fix
the problem clearly either because just adding the overhead of dev_info
statements to the function makes the bug go away (so I can technically
fix the bug, but that's just a total hack). The one other little cliue
I found was that the delay went away completely when I put dev_info
statements in every possible branch of the function's logic. When I only
added dev_info to the ifs corresponding to a problem though, a slight
delay appeared (bumping the total time in the function to around 10ms),
but still not enough for link training to timeout (so my GPU always
loaded).

I plan on mailing the list for the PCI subsystem of the kernel soon, but
I'm stumped about how exactly to proceed so if you have any debugging
suggestions, I'd be happy to hear them. Thanks again.

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

Title:
  10de:0426 GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: 10de:0426 GPU loads unreliably, possible kernel timeout

2014-01-03 Thread Kyle Auble
Hmm... so I've just finished a first set of tests with reverting that commit, 
and I definitely have results, though they aren't as cut-and-dry as I hoped. 
When I reverted the commit, there were merge conflicts in:
drivers/acpi/scan.c
drivers/dma/acpi-dma.c

Since I really have no clue how these files work, I used git mergetool
to try simple ways of resolving the conflicts. I tried completely
reverting both files to the older version and leaving them as they are
at the tip of the master branch. In both of those cases, the kernel
failed to build, with make throwing an error when it reached the
appropriate file, then completely stopping soon after with a [deb-pkg]
error. What's interesting is that when I kept acpi/scan.c in its up-to-
date form but entirely reverted /dma/acpi-dma.c, the kernel built
successfully.

Unfortunately, when I tried testing it, that kernel build froze during
boot, and when I logged in with a stable kernel to check the dmesg logs,
the bug was still there. I would need to actually take the plunge and
spend a while learning how the code works before I could resolve the
conflict more precisely. However, I noticed the build process created a
debug package this time; is there some debug setting that I could enable
that would shed light on anything?

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

Title:
  10de:0426 GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: 10de:0426 GPU loads unreliably, possible kernel timeout

2013-12-07 Thread Kyle Auble
So after another couple of months, I've managed to do more testing, and
I may have found something useful. First off, two fresh, stable versions
of the Ubuntu kernel have shown the bug: v3.2.0-56 (64-bit) and
v3.5.0-44 (32-bit). Also, the most recent package from the Ubuntu
mainline kernel PPA, v3.13.0-rc3 (built Dec. 6), showed the bug and
failed to boot. I confirmed the bug by looking at the old dmesg log
after rebooting into a working kernel.

On the positive side, after a little more free-time and thinking about
the problem, I can give you a commit that may be canceling out the
effect from Xiao Guangrong's earlier patch. Instead of using git-bisect,
I narrowed down the problem to a small range from previous tests, then
manually checked the merges in the mainline kernel's history. After
tracing the regression to a simple merge, I rebased the short side
branch leading to it onto the preceding, bug-free commit. I don't know
if this method would give false results, but I figured since the merge
itself involved no extra changes and the rebase didn't cause any
conflicts, it should be useful.

The patch where the bug reappeared for me was:
ee8209fd026b074bb8eb75bece516a338a281b1b by Andy Shevchenko

Hope this helps some, and let me know if there's anything else I could
try.

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

Title:
  10de:0426 GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: 10de:0426 GPU loads unreliably, possible kernel timeout

2013-09-20 Thread Kyle Auble
I was a little confused about exactly which version of the kernel you
wanted to test, but it's a moot point because all of the ones I tried
had the bug still.

I'm still using Ubuntu 12.04 so sudo apt-get dist-upgrade just keeps me
on v3.5.0-40, which definitely has the bug. I also tested v3.11-rc1
(built 7/14) off of the Ubuntu Mainline PPA, v3.11-rc5 (it had the patch
by Rafael Wysocki I mentioned previously), and v3.12-rc1 (the latest
version). Every single one showed the bug, which I confirmed by checking
the dmesg logs after booting up with a stable kernel. Actually, none of
those three kernels even made it to the login screen.

It's a little unnerving that whatever changes fixed the bug around May
this year have been canceled out since then. Seeing the glass half-full
though, once I have some free time, I can do a standard bisection to see
where the fix was knocked out. That might give us a little more data to
work with.

** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  10de:0426 GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-09-18 Thread Kyle Auble
So I've been busy, but I have some more useful info. I've confirmed the
bug's still in both version 3.5.0-40 (32 bit) and 3.2.0-53 (64 bit) of
the Ubuntu kernel.

However, while I've been busy, I had the idea of just splicing the
changes from Xiao's patch (which we found in the last bisect) into the
mainline kernel before doing a reverse bisect on commits before that
one. After a couple of false starts, I was able to isolate a prior patch
clearly (I tested it 10 times in various boot-up situations, and it
always worked). Apparently the magic patch was a merge by Linus:

99c6bcf46d2233d33e441834e958ed0bc22b190a by Linus Torvalds

I honestly have no clue why this patch would be the earlier necessary
one, and my gut feeling is that it means this bug is very tangled and
subtle. I'm both busy and a little out of my league to contact the
kernel mailing-list directly, but while running the bisection, I came
across the name Rafael J. Wysocki a couple of times. My 2nd reverse
bisection actually uses a patch by him as the earliest commit because I
originally zeroed in on his commit as the next critical one. It was only
after testing over 6 or 7 boots that I confirmed a bad session.

Anyways, when searching for his commits in the git log, a recent one
(60f75b8e97daf4a39790a20d962cb861b9220af5) jumped out since it sounded
particularly relevant. It specifically handles interaction problems
between PCI bridges and ACPI, then mentions graphics adapter detection
as a major justification. I'm guessing you may already be in touch with
him, but if not, it sounds like he might be a good person to talk to.

** Attachment added: 2nd (Reverse) Bisection Log
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3828444/+files/bisect2-log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-08-01 Thread Kyle Auble
Hello again, I just thought I would make a quick update. I noticed that
the commit that fixed the mainstream build has been backported into
recent stable kernels. Unfortunately, I'm still seeing the bug on my
32-bit kernel (v3.5.0-37), and while it hasn't popped up for the current
64-bit kernel yet (v3.2.0-51), I saw it a couple of times even after the
commit had been backported (v3.2.0-49).

The booting from battery work-around still seems to work though. It's
just my guess, but I'm thinking there may be an even earlier patch in
the mainline kernel to the power management system. Through some very
indirect logic, that patch works in tandem with the memory mapping one
to resolve the problem. If anyone has any suggestions about another
logging option I could try or how the power source might be affecting
things, I could try another bisect on the mainline kernel.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-22 Thread Kyle Auble
Just finished the reverse bisection (managed to remember that bisect
bad is good and vice versa). It looks like the commit that fixes the
problem is something to do with memory mapping:

d34883d4e35c0a994e91dd847a82b4c9e0c31d83 by Xiao Guangrong

To be safe, I tested the kernel built at that commit 7 times in 32 bit
mode, and the GPU loaded fine all 7 times. I did skip one commit towards
the end because it was purely a documentation update, and it wound up
being cut out in the next step anyway.  I'm attaching the bisection log
too, and I'll keep an eye on my emails for any updates.

I'm not sure what the next step in the process is, but I really
appreciate everyone's help, and I'm glad it looks like we've finally
pinned this thing down.

** Attachment added: Bisection Output
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3710621/+files/good-commit

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-22 Thread Kyle Auble
** Attachment added: Reverse Bisection Log
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3710622/+files/bisect-log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-08 Thread Kyle Auble
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

** Tags removed: needs-upstream-testing
** Tags added: kernel-fixed-upstream kernel-fixed-upstream-v3.10-rc4

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-08 Thread Kyle Auble
Huzzah, I think you all got it! I finally found the time to do a
separate install of i386 Ubuntu on the end of my harddisk for testing
the 32bit version of the mainline kernel.

When I boot the 32bit version with the default kernel (v3.5), the GPU
still doesn't load, but with kernel v3.10-rc4, everything checks out
fine. The output from `lspci -vvnn` looks right, boot video device
appears in dmesg, and the first PCI bridge takes under 10 ms to
initialize. Although Unity 3D still won't load, that's just because the
nvidia module couldn't build against the mainline kernel.

I'll keep the test partition installed a little while longer. Just let
me know what else I need to do to help with closing the bug out. Thanks
again for all your help.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-02 Thread Kyle Auble
Sure, can do.

Because the bug seems to lie dormant most of the time in the 64-bit
build, I've tried both the 32  64 bit versions of Saucy Salamander. I
tried the 64 bit version 4 times without seeing the bug, but it popped
right up with the 32 bit version. I'll run apport from within the 32 bit
version later today (need to go somewhere with wifi).

I've installed v3.10-rc3 (64-bit) of the kernel too, and so far, the PCI
system is initializing the GPU fine. Since the bug is still appearing in
the 32 bit ISO though and a mainline build from earlier this month, I'm
thinking it's lurking there. After some googling, it looks like there is
a workaround for updating a Live USB kernel. I'll use that to try the
newest 32bit mainline kernel too.

On a side note, I tried all of the kernel parameters from the DebuggingACPI 
page (with a mainline daily build from earlier this
month). While I did see one bad session, it was actually from a reboot where I 
forgot to change the parameters. I tried the same sequence of reboots (with 
ACPI modified, then with normal parameters) to see if the following session 
changed, but the bug didn't reappear.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Lspci.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3693027/+files/Lspci.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] BootDmesg.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693023/+files/BootDmesg.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcCpuinfo.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693029/+files/ProcCpuinfo.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Lsusb.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3693028/+files/Lsusb.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] UdevDb.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3693032/+files/UdevDb.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-06-02 Thread Kyle Auble
apport information

** Tags added: saucy

** Description changed:

  WORKAROUND: If I boot my computer from battery power alone without AC,
  my GPU  the Ubuntu splash screen load on startup.
  
  I've been running Ubuntu 12.04 for a few weeks now, I really like it,
  but from the beginning, I had the issue where the proprietary nvidia
  driver installs but fails to load (confirmed from the commandline,
  jockey, and the nvidia-dashboard). Over time, I've noticed that
  sometimes when I power on, the driver does load and I can enter a full
  unity session without problems, but other times, I fall back onto the
  VESA driver and a unity 2d session. On a whim, I finally copied logs
  from both successful and unsuccessful boots, cut out the times, ran a
  diff on them, and noticed a pattern in the kernel messages.
  
  I'm filing this bug after a successful boot so I've also attached copies
  of dmesg, Xorg,  jockey logs from an unsuccessful boot. The first thing
  I saw in the logs was a timing discrepancy between the two boots, most
  of which is due to GPE storms. I've checked other logs and there's not a
  clear relation, I've had successful boots with them and unsuccessful
  ones without them. I do still wonder if they may be involved because it
  seems I'm a little luckier if I turn off and unplug any peripherals
  before booting.
  
  But around line 325 in my dmesg logs, at the last step that mentions my
  GPU (pci device :01:00.0), there is consistently at most a 6 ms
  delay for successful boots, but a 30 ms one for unsuccessful ones. Also,
  on all dmesg logs from successful boots, around line 610, the message
  Boot video device is recorded for the PCI number of my GPU, but for
  every fallback, the message never appears. That's why I'm thinking it's
  a kernel issue because the earliest mention of a specific driver module
  doesn't occur until later in the log.
  
  I'm currently using fully updated versions of nvidia driver 295.49.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-24-generic-pae 3.2.0-24.39
  ProcVersionSignature: Ubuntu 3.2.0-24.39-generic-pae 3.2.16
  Uname: Linux 3.2.0-24-generic-pae i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  kyle   1790 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfc40 irq 48'
     Mixer name : 'SigmaTel STAC9872AK'
     Components : 'HDA:83847662,104d1c00,00100201 
HDA:14f12c06,104d1700,0010'
     Controls  : 18
     Simple ctrls  : 9
  Date: Tue Jun  5 22:44:22 2012
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=1b676222-44c7-453c-a522-06b6fd5d66f4
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  MachineType: Sony Corporation VGN-FZ260E
  PccardctlIdent:
   Socket 0:
     no product info available
  PccardctlStatus:
   Socket 0:
     no card
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-24-generic-pae 
root=UUID=e330e46a-b426-439f-8037-c1069cc693ce ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-24-generic-pae N/A
   linux-backports-modules-3.2.0-24-generic-pae  N/A
   linux-firmware1.79
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/04/2007
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: R1120J7
  dmi.board.asset.tag: N/A
  dmi.board.name: VAIO
  dmi.board.vendor: Sony Corporation
  dmi.board.version: N/A
  dmi.chassis.asset.tag: N/A
  dmi.chassis.type: 10
  dmi.chassis.vendor: Sony Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR1120J7:bd07/04/2007:svnSonyCorporation:pnVGN-FZ260E:pvrFC01:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
  dmi.product.name: VGN-FZ260E
  dmi.product.version: FC01
  dmi.sys.vendor: Sony Corporation
  ---
  AcpiTables: Error: command ['pkexec', 
'/usr/share/apport/dump_acpi_tables.py'] failed with exit code 127: Error 
executing /usr/share/apport/dump_acpi_tables.py: Permission denied
  ApportVersion: 2.5.1-0ubuntu4
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 3344 F pulseaudio
  CasperVersion: 1.321
  DistroRelease: Ubuntu 12.10
  LiveMediaBuild: Ubuntu 12.10 Quantal Quetzal - Alpha i386 (20120831)
  MachineType: Sony Corporation VGN-FZ260E
  Package: linux (not 

[Bug 1009312] CRDA.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3693024/+files/CRDA.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] CurrentDmesg.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693025/+files/CurrentDmesg.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcModules.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693031/+files/ProcModules.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcInterrupts.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693030/+files/ProcInterrupts.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] IwConfig.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693026/+files/IwConfig.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] WifiSyslog.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693034/+files/WifiSyslog.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] UdevLog.txt

2013-06-02 Thread Kyle Auble
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3693033/+files/UdevLog.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-05-02 Thread Kyle Auble
I know it's been a while, but I thought I should report that I've still
been seeing this bug. I recently installed a fresh mainline kernel
(3.9.0-999-generic, built on 4/21), and it runs fine except I'm still
seeing the bug. I want to try some of the ACPI options again when
booting, but my problem is I still have no clue about how to
consistently replicate the bug.

After looking through my PCI info, I have a rough hypothesis of where
the problem's happening. Although the GPU loses PCI features like bus-
mastering  ASPM on bad sessions, my gut feeling is these are side-
effects of an underlying PCI/ACPI issue (since multiple devices raise
error flags on bad sessions). I'm wondering if it has something to do
with how space is being allocated for DMA (since the 32-bit memory
region for the GPU is always treated as virtual in bad sessions). This
might explain why the bug was so common in the PAE kernel.

The one other thing I realized is that my GPU is the only device to use a 
PCI-to-PCI bridge straight off the root port. Every other
device on my system either routes directly to the root port (like the audio 
device, 00:1b.0) or uses a bridge off of a secondary PCI Express port (prefix 
00:1c). Especially since forming the GPU's PCI-to-PCI bridge is exactly where 
the timing discrepancy occurs, I wonder if this is why the GPU is the one 
device that fails. I've gone ahead and attached the output from `lspci -t` to 
help see my PCI arrangement.

I'm not a kernel hacker so these are just hunches based on the data, but
if anyone that's comfortable with the kernel's PCI system could suggest
a test that might consistently reveal the bug, I'd be happy to keep
testing things out.

** Attachment added: PCI Layout
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3663332/+files/PCITree

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2013-02-16 Thread Kyle Auble
Hello, I've been away from a while, but I just wanted to see if there
was anything I could still do to help with this bug. I haven't had a
problem with it for a few weeks, but I did have one weird startup this
morning when my monitor simply didn't come on.

I moved to one of the beta Nvidia drivers in December to use Steam
temporarily, but I can drop back to the stable driver now. I never knew
how to consistently provoke the bug, but if someone has a better idea
now as to what causes it, I can try replicating it and seeing if one of
the recent kernel versions actually did fix it.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-25 Thread Kyle Auble
I finally had another bad reboot and remembered to run the ACPI
debugging steps. However a diff on the output of `sudo dmidecode` showed
no differences from the one in a good session, and the only difference
in the /proc/acpi files was that in battery/BAT0/info, my battery's
design voltage was listed as 123340 mV instead of 123600 mv (but I don't
think this is related because I'm in a good session again and my battery
info says 123340 mV this time too).

I did a suspend and restart though, and like before when the GPU wasn't
active, the computer powers up, but the screen never comes on. I've
copied the kernel log from that session to include. First, I have
updated the kernel so I'll include the new `uname -a`.

** Attachment added: Output of `uname -a` for bad session
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3343277/+files/uname

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-25 Thread Kyle Auble
Also, there were several differences in the output of `sudo lspci -vvnn`
between the good and the bad sessions. For several of the devices, there
seems to be a consistent change in the MAbort flag between the good and
bad session, although PresDet switched for the Root Port, the Audio
Controller had a different data value on line 104, and the SATA
controller's address changed. However, there are several different and
missing values for the GPU (starting at line 457). After the GPU though,
there are a couple switched flags for the Wireless Network system (and
MAbort isn't one of them), but nothing else.

** Attachment added: Output of `sudo lspci -vvnn` in bad session
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3343320/+files/lspci

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-25 Thread Kyle Auble
I have been busy lately, but I've searched Launchpad a little and found
one other expired bug that I felt confident enough to label a duplicate.
I also came across Bug #940564, which while I don't think it's an exact
duplicate, seems to have a lot of similarities to this one. That one is
currently just marked against the nvidia-graphics-drivers though.
Unfortunately, I still haven't noticed any pattern in when a good or bad
session occurs, but I'll leave a comment if I do find one. Let me know
if there's anything else I can do.

** Attachment added: Kernel log of a failed suspend attempt
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3343321/+files/kern.log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1010838] Re: Ubuntu 12.04 32bit has a problem with my nvidia card, 64bit ok

2012-09-14 Thread Kyle Auble
*** This bug is a duplicate of bug 1009312 ***
https://bugs.launchpad.net/bugs/1009312

** This bug has been marked a duplicate of bug 1009312
   GPU loads unreliably, possible kernel timeout

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

Title:
  Ubuntu 12.04 32bit has a problem with my nvidia card, 64bit ok

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940564] Re: [8400m] nvidia-graphics-drivers (295.33-0ubuntu1), is causing failed restarts. shutdowns only a blackscreen on tty's other than tty7

2012-09-14 Thread Kyle Auble
I just came across this report, and while I'm not having problems with
black screens or failed shut-downs so much, I have a similar set-up to
the original reporter: Nvidia 8400M GT, Core 2 Duo, and I've been having
problems with the GPU failing to activate (see Bug #1009312). It seems
to be happening at the actual kernel level very early in booting, not
the nvidia drivers.

I'm seeing a lot of similarities in the patterns here though: problem
seems to happen in cycles over multiple shutdowns, much better luck with
the 64bit version of Ubuntu and the kernel (comment #6 above), having to
revert to the VGA drivers (comment #12), some relation to power
management. I don't think my report is an exact duplicate of this (and I
think all kernel reports are supposed to be treated separately), but I
would be interested if anyone here is seeing something similar to what I
am. If anyone is, that could really help us narrow down what's going on.

And again, if you have a 64bit processor, you really might want to try
moving to the 64bit build of Ubuntu; when I was on the PAE kernel, GPU
problems were the norm, but since switching to the 64bit version, I've
only had one bad session over at least 10 reboots.

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

Title:
  [8400m] nvidia-graphics-drivers (295.33-0ubuntu1),  is causing failed
  restarts. shutdowns  only a blackscreen on tty's other than tty7

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
It's strange, but the bug hasn't appeared again yet. I've tried a few
more random things, but nothing seems to make it come up again. I
suppose it's always possible that one bad session was a complete
outlier, but since I can't consistently replicate the bug now in 64bit
Ubuntu, I can't really test the ACPI flags from my installed system,
although I do still have my 32bit live CD. I'll try fiddling with the
ACPI flags when booting from the live disk and see if anything happens.

As for the ACPI debugging attachments, did you want those specifically
from a session where the bug appears, or any session? If you only wanted
logs from a bad session, I'll remember to copy the logs and submit them
next time the bug shows up.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
** Attachment added: Output of `uname -a`
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3314917/+files/uname

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
** Attachment added: Output of `sudo lspci -vvnn`
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3314918/+files/lspci

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
** Attachment added: Output of `sudo dmidecode`
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3314919/+files/dmidecode.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
I wasn't able to follow the exact instructions on the wiki page because
my system is just appending different sessions to the main kernel log,
instead of archiving old log files. I've cut out all of the earlier
sessions so it should just be of the most recent one, including a test
of suspend and awake.

** Attachment added: Kernel log of successful suspend
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3314920/+files/kern.log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-14 Thread Kyle Auble
** Attachment added: Tarball of /proc/acpi
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3314921/+files/acpi.tar.bz

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-11 Thread Kyle Auble
Arrrgh, spoke too soon. After several reboots that went fine, I just
booted up the computer, the splash screen failed to show, and I'm now in
Unity 2D without my GPU. I'm really out of ideas as to what could be
going on.

I diffed the dmesg logs again, and after the times have been stripped,
the only difference before the video device fails to boot is that the
chip is detected as being at slightly different frequencies (fraction of
a MHz) and the boot time is obviously different.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-11 Thread Kyle Auble
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-09 Thread Kyle Auble
I'm now running the AMD64 version of Precise from the hard-disk, and
over several reboots, the GPU has been loading without any problems. It
looks like dropping the PAE version of the kernel fixed things for me. I
don't know if whatever was happening was due to the mismatch between the
32bit OS and 64bit chip, or if it's something in the 32 bit kernel
regardless of the hardware. All I can say is that I've managed to
resolve it on my machine. Thanks for your help talking me through
different ideas and narrowing this down.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-04 Thread Kyle Auble
What do you know? I tried booting the 64bit version of Quantal from a
Live USB multiple times, and the splash screen consistently appeared.
Now I wasn't able to check the logs because the screen would then freeze
(as I mentioned in my last post, that may be a bug in Quantal's
graphics).

However, I then downloaded the 64 bit version of Precise, and sure
enough, the splash screen appears every time, and both nouveau  Unity
3d load, with the AC plugged in. dmesg shows the 6ms (instead of 30ms)
gap near line 300, and the GPU is being booted around line 600. I
suppose I should reinstall with the 64 bit version (which I was planning
to do at some point anyway) to be sure, but it looks like that may
resolve the bug for me.

I guess it may be something to do specifically with the PAE version of
the kernel. If you want to me keep helping narrow down what's going on,
I wouldn't mind, but if you want to close the bug as resolved, I can do
that and make a note about the fix somewhere if anyone else is having
problems (here/the wiki/the forums?) I'll still let you know how the
fresh install turns out.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-02 Thread Kyle Auble
apport information

** Tags added: apport-collected quantal running-unity

** Description changed:

  WORKAROUND: If I boot my computer from battery power alone without AC,
  my GPU  the Ubuntu splash screen load on startup.
  
  I've been running Ubuntu 12.04 for a few weeks now, I really like it,
  but from the beginning, I had the issue where the proprietary nvidia
  driver installs but fails to load (confirmed from the commandline,
  jockey, and the nvidia-dashboard). Over time, I've noticed that
  sometimes when I power on, the driver does load and I can enter a full
  unity session without problems, but other times, I fall back onto the
  VESA driver and a unity 2d session. On a whim, I finally copied logs
  from both successful and unsuccessful boots, cut out the times, ran a
  diff on them, and noticed a pattern in the kernel messages.
  
  I'm filing this bug after a successful boot so I've also attached copies
  of dmesg, Xorg,  jockey logs from an unsuccessful boot. The first thing
  I saw in the logs was a timing discrepancy between the two boots, most
  of which is due to GPE storms. I've checked other logs and there's not a
  clear relation, I've had successful boots with them and unsuccessful
  ones without them. I do still wonder if they may be involved because it
  seems I'm a little luckier if I turn off and unplug any peripherals
  before booting.
  
  But around line 325 in my dmesg logs, at the last step that mentions my
  GPU (pci device :01:00.0), there is consistently at most a 6 ms
  delay for successful boots, but a 30 ms one for unsuccessful ones. Also,
  on all dmesg logs from successful boots, around line 610, the message
  Boot video device is recorded for the PCI number of my GPU, but for
  every fallback, the message never appears. That's why I'm thinking it's
  a kernel issue because the earliest mention of a specific driver module
  doesn't occur until later in the log. My computer also suspended fine
  last time I tried it under the nvidia module, but my monitor never turns
  back on if I suspend while using the VESA driver. I don't know if it's
  the 3D support or what, but not having the GPU seems to cause a lot of
  other issues.
  
  If you need me to attach any more information, try anything else, or
  report something upstream, just let me know. The GPU is an on-board
  GeForce 8400M GT, and the processor is an Intel Core 2 Duo T7250. My
  setup's a little quirky because I'm using a 32-bit version of Ubuntu
  although I have a 64-bit processor, but I'm currently using fully
  updated versions of nvidia driver 295.49 and kernel 3.2.0-24.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-24-generic-pae 3.2.0-24.39
  ProcVersionSignature: Ubuntu 3.2.0-24.39-generic-pae 3.2.16
  Uname: Linux 3.2.0-24-generic-pae i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  kyle   1790 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfc40 irq 48'
     Mixer name : 'SigmaTel STAC9872AK'
     Components : 'HDA:83847662,104d1c00,00100201 
HDA:14f12c06,104d1700,0010'
     Controls  : 18
     Simple ctrls  : 9
  Date: Tue Jun  5 22:44:22 2012
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=1b676222-44c7-453c-a522-06b6fd5d66f4
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  MachineType: Sony Corporation VGN-FZ260E
  PccardctlIdent:
   Socket 0:
     no product info available
  PccardctlStatus:
   Socket 0:
     no card
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-24-generic-pae 
root=UUID=e330e46a-b426-439f-8037-c1069cc693ce ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-24-generic-pae N/A
   linux-backports-modules-3.2.0-24-generic-pae  N/A
   linux-firmware1.79
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/04/2007
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: R1120J7
  dmi.board.asset.tag: N/A
  dmi.board.name: VAIO
  dmi.board.vendor: Sony Corporation
  dmi.board.version: N/A
  dmi.chassis.asset.tag: N/A
  dmi.chassis.type: 10
  dmi.chassis.vendor: Sony Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 

[Bug 1009312] BootDmesg.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289849/+files/BootDmesg.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] CRDA.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3289850/+files/CRDA.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] CurrentDmesg.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289851/+files/CurrentDmesg.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] IwConfig.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289852/+files/IwConfig.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Lspci.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3289853/+files/Lspci.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Lsusb.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3289854/+files/Lsusb.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcCpuinfo.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289855/+files/ProcCpuinfo.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcInterrupts.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289856/+files/ProcInterrupts.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] ProcModules.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289857/+files/ProcModules.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] PulseList.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289858/+files/PulseList.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] UdevDb.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1009312/+attachment/3289859/+files/UdevDb.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] UdevLog.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289860/+files/UdevLog.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] WifiSyslog.txt

2012-09-02 Thread Kyle Auble
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3289861/+files/WifiSyslog.txt

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-09-02 Thread Kyle Auble
I finally picked up a spare USB thumb drive and set it up as a Live USB
with the Aug 31 build of Quantal. Just to be sure, I went back and
checked with my old Precise Live CD, and the bug appears for both
versions in a live boot too. While both live-boots also respond to the
boot-from-battery workaround, I think there's a bug in the Quantal
version of nouveau or something because although the splash screen
appears for a USB boot of Quantal on battery, the screen then freezes
with static (but I can hear sounds in the background).

One other thing I'm going to try is setting up a Live USB of the AMD64
version to check. While I'm not expecting it too, I'll let you know if
that one behaves differently.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-08-22 Thread Kyle Auble
I've been busy recently, and probably won't be able to test the Ubuntu
build right away. I only have spare CD-Rs right now, but the download
page says that the daily build of Quetzal is currently too large to burn
to CD.

I'll keep checking, and once I have a spare USB drive or some DVD-Rs, or
the build can fit on a CD-R, I'll run the test. Just to check though,
will booting into a Live session in RAM be valid, or do I need install
the build to hard-disk to reduce the variables involved? Although I
won't have the proprietary NVIDIA driver in the Live session, I should
still be able to tell if the GPU is being used . If I have to install,
it just may take a little longer. I'll have to shuffle some partitions
around.

Anyways, thanks for the suggestions, and I'll try to run that test ASAP.

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Bug didn't exist in Xubuntu 11.10, still affects v.3.5-rc7

2012-08-08 Thread Kyle Auble
Before using Ubuntu 12.04, I was running Xubuntu 11.10. Although,
I didn't use Unity, the computer would detect my GPU, load the
nvidia driver module, and I was able to use higher resolutions.
However, I didn't have the newest version of the kernel because
starting around version 3.2.0-15 my computer would freeze during
bootup until upgrading to 3.2.0-23 (which came with Ubuntu 12.04).

I just tested the recent mainline build of the kernel (version 3.5-rc7),
and I was able to boot into a session, unlike with rc1. However, the
GPU still isn't loading and I can only enter a Unity2D session. Also,
the boot from battery workaround didn't work with the 3.5 kernel.

 tag -needs-upstream-testing
 tag kernel-bug-exists-upstream kernel-bug-exists-upstream-v3.5-rc7-quantal

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-08-08 Thread Kyle Auble
Sorry about the tags, I guess I did something wrong or don't have access
to the email interface

** Tags removed: kernel-unable-to-test-upstream needs-upstream-testing
** Tags added: kernel-bug-exists-upstream 
kernel-bug-exists-upstream-v3.5-rc7-quantal

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-16 Thread Kyle Auble
After paying attention to how my computer boots, I've finally found a
consistent relationship. If I boot my computer from battery power alone
without AC, my GPU  the Ubuntu splash screen load on startup. However,
if I start my laptop on AC power, with or without the battery connected,
it seems to be random luck if the GPU does load, and most of the time it
doesn't.

Whether peripherals or wireless are active doesn't seem to matter. I've
gone ahead and added a kernel-acpi tag because power management seems to
be involved somehow.

** Tags added: kernel-acpi

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-06 Thread Kyle Auble
I can now also confirm that suspend works perfectly with the nvidia
driver loaded

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-06 Thread Kyle Auble
** Tags added: kernel-unable-to-test-upstream

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-06 Thread Kyle Auble
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-06 Thread Kyle Auble
I just tried booting into the newest 3.5 release candidate (dated from
June 2nd), and it choked somewhere between starting up my wireless card
and reaching a login screen. While installing the mainline kernel, dpkg
actually printed an error about not being able to build the nvidia
module against the kernel, but I guess not even the VESA driver worked.
Do you want me to try a bisect on different kernel versions, or would I
need different hardware for a proper test?

I've gone ahead and attached the 3.5 kernel dmesg log. I'm not sure if
you wanted me to remove the 'needs-upstream-testing' tag and change to
confirmed because I was unable to test the bug specifically. If you
don't consider the tags mutually exclusive, I can add back the
incomplete status and upstream testing tag.

I also have to report that it turns out suspend doesn't work perfectly
even with the GPU. I was able to unlock the computer fine, but the fan
just started running full blast, and when I tried logging out of the
session, my monitor just turned off. The following restart didn't reboot
the GPU so I'm back onto the VESA driver. Since it happens both with and
without the GPU though, I guess the suspend issue is separate, and I
think I already saw a similar bug report.

** Attachment added: Dmesg log for the 3.5.0 kernel
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3177746/+files/dmesg3.5.log

** Tags removed: needs-upstream-testing

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-05 Thread Kyle Auble
** Attachment added: A dmesg log showing a fallback onto VESA
   
https://bugs.launchpad.net/bugs/1009312/+attachment/3177035/+files/baddmesg.log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] [NEW] GPU loads unreliably, possible kernel timeout

2012-06-05 Thread Kyle Auble
Public bug reported:

I've been running Ubuntu 12.04 for a few weeks now, I really like it,
but from the beginning, I had the issue where the proprietary nvidia
driver installs but fails to load (confirmed from the commandline,
jockey, and the nvidia-dashboard). Over time, I've noticed that
sometimes when I power on, the driver does load and I can enter a full
unity session without problems, but other times, I fall back onto the
VESA driver and a unity 2d session. On a whim, I finally copied logs
from both successful and unsuccessful boots, cut out the times, ran a
diff on them, and noticed a pattern in the kernel messages.

I'm filing this bug after a successful boot so I've also attached copies
of dmesg, Xorg,  jockey logs from an unsuccessful boot. The first thing
I saw in the logs was a timing discrepancy between the two boots, most
of which is due to GPE storms. I've checked other logs and there's not a
clear relation, I've had successful boots with them and unsuccessful
ones without them. I do still wonder if they may be involved because it
seems I'm a little luckier if I turn off and unplug any peripherals
before booting.

But around line 325 in my dmesg logs, at the last step that mentions my
GPU (pci device :01:00.0), there is consistently at most a 6 ms
delay for successful boots, but a 30 ms one for unsuccessful ones. Also,
on all dmesg logs from successful boots, around line 610, the message
Boot video device is recorded for the PCI number of my GPU, but for
every fallback, the message never appears. That's why I'm thinking it's
a kernel issue because the earliest mention of a specific driver module
doesn't occur until later in the log. My computer also suspended fine
last time I tried it under the nvidia module, but my monitor never turns
back on if I suspend while using the VESA driver. I don't know if it's
the 3D support or what, but not having the GPU seems to cause a lot of
other issues.

If you need me to attach any more information, try anything else, or
report something upstream, just let me know. The GPU is an on-board
GeForce 8400M GT, and the processor is an Intel Core 2 Duo T7250. My
setup's a little quirky because I'm using a 32-bit version of Ubuntu
although I have a 64-bit processor, but I'm currently using fully
updated versions of nvidia driver 295.49 and kernel 3.2.0-24.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: linux-image-3.2.0-24-generic-pae 3.2.0-24.39
ProcVersionSignature: Ubuntu 3.2.0-24.39-generic-pae 3.2.16
Uname: Linux 3.2.0-24-generic-pae i686
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu8
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  kyle   1790 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfc40 irq 48'
   Mixer name   : 'SigmaTel STAC9872AK'
   Components   : 'HDA:83847662,104d1c00,00100201 
HDA:14f12c06,104d1700,0010'
   Controls  : 18
   Simple ctrls  : 9
Date: Tue Jun  5 22:44:22 2012
EcryptfsInUse: Yes
HibernationDevice: RESUME=UUID=1b676222-44c7-453c-a522-06b6fd5d66f4
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
MachineType: Sony Corporation VGN-FZ260E
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 VESA VGA
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-24-generic-pae 
root=UUID=e330e46a-b426-439f-8037-c1069cc693ce ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.2.0-24-generic-pae N/A
 linux-backports-modules-3.2.0-24-generic-pae  N/A
 linux-firmware1.79
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/04/2007
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: R1120J7
dmi.board.asset.tag: N/A
dmi.board.name: VAIO
dmi.board.vendor: Sony Corporation
dmi.board.version: N/A
dmi.chassis.asset.tag: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR1120J7:bd07/04/2007:svnSonyCorporation:pnVGN-FZ260E:pvrFC01:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.name: VGN-FZ260E
dmi.product.version: FC01
dmi.sys.vendor: Sony Corporation

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-bug i386 nvidia precise

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

Title:
  GPU loads 

[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-05 Thread Kyle Auble
** Attachment added: A Xorg log showing a fallback onto VESA
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3177057/+files/badxorg.log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1009312] Re: GPU loads unreliably, possible kernel timeout

2012-06-05 Thread Kyle Auble
** Attachment added: A jockey error log from a fallback to VESA
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1009312/+attachment/3177058/+files/badjockey.log

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

Title:
  GPU loads unreliably, possible kernel timeout

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs