[Ubuntu-x-swat] [Bug 1220645] Re: Webcam view shows green screen

2013-09-05 Thread Yung Shen
@xnox
thanks for the informative comment, I will remove ubiquity from affected 
package and update the description.


** Description changed:

- Sighting this problem when using stock 12.04.3 image, during on
- installing step of Choose a Picture,  the webcam view only playback
- with green screen.
  
- This issue could be reproduced after installed by using fowllowing tool:
- guvcview
+ When using stock 12.04.3 image, during on installing step of Choose a 
Picture,
+ the webcam view only playback with green screen, but it still can capture 
correctly if you hit the button.
  
- or:
+ This issue also affected to system testing tool, when running webcam testing:
  /usr/share/checkbox/scripts/camera_test -t display
  
- However Cheese could work normally.
+ This could be also reproduced by using guvcview.
+ However Cheese does not affected when upgrading to raring X stack.
  
- To solve this issue could simply downgrade to xserver-xorg-lts-quantal,
- this is also verfied on 12.04.2 stock image, same webcam works normally.
+ To solve this issue, could simply downgrade to xserver-xorg-lts-quantal,
+ this is also verified on 12.04.2 stock image, same webcam works normally.
  
  
  Affected webcams:
  
  1bcf:289e Sunplus
  1bcf:2985 Sunplus
  0c45:64af Microdia
+ 0c45:64ad Microdia
  064e:812c Suyin
  
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-lts-raring 1:7.7+1ubuntu4~precise1
  ProcVersionSignature: Ubuntu 3.8.0-29.42~precise1-generic 3.8.13.5
  Uname: Linux 3.8.0-29-generic x86_64
  ApportVersion: 2.0.1-0ubuntu17.1
  Architecture: amd64
  Date: Wed Sep  4 06:59:59 2013
  InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xorg-lts-raring
  UpgradeStatus: No upgrade log present (probably fresh install)

** Changed in: xorg-lts-raring (Ubuntu)
   Status: Won't Fix = New

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

Title:
  Webcam view shows green screen

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

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


[Ubuntu-x-swat] [Bug 1220629] Re: xmir_screen_for_each_damaged_window iterates through all outputs on every frame (including unused ones)

2013-09-05 Thread Daniel van Vugt
Dropping to Low importance. I haven't seen this cause any issues or have
any noticeable performance impact.

** Changed in: xmir
   Importance: Medium = Low

** Changed in: xorg-server (Ubuntu)
   Importance: Undecided = Low

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

Title:
  xmir_screen_for_each_damaged_window iterates through all outputs on
  every frame (including unused ones)

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

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


[Ubuntu-x-swat] [Bug 28907]

2013-09-05 Thread Benno Schulenberg
Should be fixed by now.  Please reopen if this still doesn't work right.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is a bug assignee.
https://bugs.launchpad.net/bugs/28907

Title:
  Dapper 3: Shift cancels CapLock not OK

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/28907/+subscriptions

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


[Ubuntu-x-swat] [Bug 28907] Re: Dapper 3: Shift cancels CapLock not OK

2013-09-05 Thread Bug Watch Updater
** Changed in: xkeyboard-config
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is a bug assignee.
https://bugs.launchpad.net/bugs/28907

Title:
  Dapper 3: Shift cancels CapLock not OK

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/28907/+subscriptions

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


[Ubuntu-x-swat] [Bug 1216472] Re: [xmir] [multimonitor] Frames eventually get slightly out of order, look like glitches or typing will feel slow

2013-09-05 Thread Daniel van Vugt
Further notes... The issue seems to occur on frames where some but not
all of the outputs are dirty. So one output makes it through to callback
(sna_xmir_copy_to_mir), but the other does not:

_X_EXPORT void
xmir_screen_for_each_damaged_window(xmir_screen *xmir, xmir_window_proc 
callback)
{
xmir_window *xmir_win, *tmp_win;
xorg_list_for_each_entry_safe(xmir_win, tmp_win, xmir-damage_list, 
link_damage) {
if (xmir_window_has_free_buffer(xmir_win) 
xmir_window_is_dirty(xmir_win))
(*callback)(xmir_win, xmir_window_get_dirty(xmir_win));
}
}

XMir is intentionally designed to only redraw dirty outputs. So not all
get swapped every frame. I wonder however if that is somehow
incompatible with how the intel DDX works?

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

Title:
  [xmir] [multimonitor] Frames eventually get slightly out of order,
  look like glitches or typing will feel slow

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

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


[Ubuntu-x-swat] [Bug 801229] Re: xorg GPU freezing

2013-09-05 Thread AG Restringere
Thank you for reporting this bug to Ubuntu. RELEASE reached EOL on DATE.
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

Do feel free to report any other bugs you may find.

** Changed in: xorg-server (Ubuntu)
   Status: New = Invalid

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

Title:
  xorg GPU freezing

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

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


[Ubuntu-x-swat] [Bug 1103372] Re: [Dell Vostro 260] nvidia-experimental-310 does not support Nvidia GeForce GT 520

2013-09-05 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. However, according to this report, you are not using the
most recent version of this package for your Ubuntu release. Please
upgrade to the most recent version and let us know if you are still
having this issue. Thanks in advance.

Please use the additional drivers tool and select the 'nvidia-313'
driver and retest the problem and see if that solves it.

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

Title:
  [Dell Vostro 260] nvidia-experimental-310 does not support Nvidia
  GeForce GT 520

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

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


[Ubuntu-x-swat] [Bug 1068404] Re: Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx upgrade

2013-09-05 Thread Marco Vuano
Filing on AMD's bug tracker is the right thing to do, if you want you
can also file here on Launchpad (try using Apport/ubuntu-bug).

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

Title:
  Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx
  upgrade

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

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


[Ubuntu-x-swat] [Bug 1066245] Re: Graphics some times runs very slow

2013-09-05 Thread AG Restringere
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: New = Invalid

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

Title:
  Graphics some times runs very slow

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

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


[Ubuntu-x-swat] [Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-09-05 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command, as it will
automatically gather debugging information, in a terminal:

$ apport-collect BUGNUMBER

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Ubuntu-x-swat] [Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-09-05 Thread AG Restringere
This bug report is being closed due to your last comment:

although I am unable to test anymore as my laptop has been replaced

For future reference you can manage the status of your own bugs by
clicking on the current status in the yellow line and then choosing a
new status in the revealed drop down box. You can learn more about bug
statuses at https://wiki.ubuntu.com/Bugs/Status. Thank you again for
taking the time to report this bug and helping to make Ubuntu better.
Please submit any future bugs you may find.

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Ubuntu-x-swat] [Bug 1184451] Re: Ubuntu 13.10 random screen freeze while Normal OS activites

2013-09-05 Thread Saha
Apropos, please write which graphics driver do you use.
I use radeon.

Below I attach Xorg.0.log when xorg is almost frozen and I need to
restart it from terminal.

Short peace of it:

[1048945.485] [mi] These backtraces from mieqEnqueue may point to a culprit 
higher up the stack.
[1048945.485] [mi] mieq is *NOT* the cause.  It is a victim.
[1048945.827] [mi] EQ processing has resumed after 43 dropped events.
[1048945.827] [mi] This may be caused my a misbehaving driver monopolizing the 
server's resources.


** Attachment added: Xorg.0.log_bad_X
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1184451/+attachment/3803967/+files/Xorg.0.log_bad_X

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

Title:
  Ubuntu 13.10 random screen freeze while Normal OS activites

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Joseph Salisbury
** Tags removed: needs-bisect
** Tags added: performing-bisect

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Till Kamppeter
Yes, I have found out already that in the mainline I have to check 3.8
as newest good and 3.8.1 as oldest bad kernel release. Currently I am
doing a doing a GIT bisect between these two. According to the estimates
by git bisect I am currently building for the third-last stage,
finishing in 20 minutes from now (18:00 CEST), after that I have to do
more two steps of 40 minutes build time each, arriving at the result at
~19:30 CEST.

Steps so far:

3.8: GOOD
3.8.1: BAD
GIT 442b43c: BAD
GIT 8ed82bb: GOOD
GIT 97ec241: GOOD

Using git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-
stable.git

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1219027] Re: Corruption after booting with GeForce GT 240

2013-09-05 Thread Timo Aaltonen
** Package changed: xorg (Ubuntu) = xserver-xorg-video-nouveau (Ubuntu)

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

Title:
  Corruption after booting with GeForce GT 240

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

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


[Ubuntu-x-swat] [Bug 1214942] Re: compiz crashes and uses 100% CPU (graphucs are recognized as Gallium 0.4 on llvmpipe (LLVM 3.2, 128 bits)

2013-09-05 Thread Timo Aaltonen
OpenGL vendor string:   VMware, Inc.

how's that possible? anyway, not a bug, fix your installation. The
xorg.conf is insane too, although looks like it's not even used.

** Changed in: xorg (Ubuntu)
   Status: New = Invalid

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

Title:
  compiz crashes and uses 100% CPU (graphucs are recognized as Gallium
  0.4 on llvmpipe (LLVM 3.2, 128 bits)

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

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


[Ubuntu-x-swat] [Bug 1220865] Re: [nvidia-prime] Xorg freeze after resume from suspend

2013-09-05 Thread Timo Aaltonen
** Package changed: xorg (Ubuntu) = nvidia-graphics-drivers-319
(Ubuntu)

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

Title:
  [nvidia-prime] Xorg freeze after resume from suspend

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

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


[Ubuntu-x-swat] [Bug 1221365] Re: many crashes

2013-09-05 Thread Quinn Balazs
Could you perhaps add some information on what you were doing when the
crashes happened? Such as if the crashes correlate to any particular
actions, and if there are any specific crashes or if it is just general.
While I am sure I could find this information in the log files provided,
a bit more information would expedite the process as some possibilities
could be ruled out.

~Quinn Balazs


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

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

Title:
  many crashes

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Joseph Salisbury
Thanks for all the info, Till.  Can you also test the latest 3.11 kernel
to confirm the bug happens there as well?  If it does, we should send
you patch upstream for inclusion in Mainline and cc stable to have it
propagated to the stable trees.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Joseph Salisbury
Actually I see that you already tested 3.11 final, per comment #50.

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1220658] Re: DP monitor turns off now and then

2013-09-05 Thread Chris Wilson
Can you attach the full dmesg? And look at installing drm-intel-nightly
from ppa:mainline?

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

Title:
  DP monitor turns off now and then

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Kamal Mostafa
Thanks for identifying the culprit, Til.  Since the problem still exists
from 3.8.8 all the way through to current mainline (3.11), I think the
best course of action is for you to file a bug against DRM on
bugzilla.kernel.org, so that upstream can sort out how they want to
address it.  We'll mirror whatever method upstream prefers to address it
(fix, revert, override switch, etc.) in 3.8-stable and Raring.

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Kamal Mostafa
Till, oops it's actually called DRI on bugzilla...  Use these
selections:

Product:Drivers
Component:  Video(DRI - non Intel)

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1218815] Re: [radeon] Graphic glitches and screen corruption (vertical lines) on XMir surfaces only

2013-09-05 Thread Weegee
After downgrading several Mir packages (libmirclient2, libmirplatform,
libmirprotobuf0, libmirserver1) to a version before the bypass update I
had in my cache (0.0.10+13.10.20130828-0ubuntu1), everything seems to be
okay again. Version 0.0.10+13.10.20130829-0ubuntu1 and everything after
that all produce the graphic glitches.

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

Title:
  [radeon] Graphic glitches and screen corruption (vertical lines) on
  XMir surfaces only

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Joseph Salisbury
Hi Till,

I can assist with the bisect.  3.8.0-9.18 was rebased to upstream
v3.8.1, so the bug may have come in with the stable update.  Can you
test the following two kernels:

v3.8 final:  http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.8-raring/
v3.8.1: http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.8.1-raring/

I assume 3.8 will be find and 3.8.1 will have the bug.  If so, I'll
start a bisect between these two versions and build you a test kernel.

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1221365] [NEW] many crashes

2013-09-05 Thread Gerson Henrique Sternadt
Public bug reported:

many crashes

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.8.0-30.44-generic 3.8.13.6
Uname: Linux 3.8.0-30-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.9.2-0ubuntu8.4
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Sep  5 14:43:40 2013
DistUpgraded: 2013-07-29 12:14:47,242 DEBUG enabling apt cron job
DistroCodename: raring
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Device [1b0a:0152]
InstallationDate: Installed on 2013-07-24 (43 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
MachineType: POSITIVO POS-PIQ77CL
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-30-generic 
root=UUID=e2a636c4-baeb-4eff-89d7-710748526817 ro plymouth:debug=1 quiet splash 
vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to raring on 2013-07-29 (38 days ago)
XorgLogOld:
 
dmi.bios.date: 01/24/2013
dmi.bios.vendor: Desenvolvida por Positivo Informatica SA
dmi.bios.version: 0304R
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: POS-PIQ77CL
dmi.board.vendor: Positivo Informatica SA
dmi.board.version: POSITIVO
dmi.chassis.type: 3
dmi.chassis.vendor: Positivo Informatica SA
dmi.chassis.version: 1.00
dmi.modalias: 
dmi:bvnDesenvolvidaporPositivoInformaticaSA:bvr0304R:bd01/24/2013:svnPOSITIVO:pnPOS-PIQ77CL:pvr0304R_POSO:rvnPositivoInformaticaSA:rnPOS-PIQ77CL:rvrPOSITIVO:cvnPositivoInformaticaSA:ct3:cvr1.00:
dmi.product.name: POS-PIQ77CL
dmi.product.version: 0304R_POSO
dmi.sys.vendor: POSITIVO
version.compiz: compiz 1:0.9.9~daily13.06.19~13.04-0ubuntu1
version.libdrm2: libdrm2 2.4.43-0ubuntu1.1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.1.4-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.1.4-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.3-0ubuntu6
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2b2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.1.0-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.21.6-0ubuntu4.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.7-0ubuntu1
xserver.bootTime: Thu Sep  5 08:07:01 2013
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.3-0ubuntu6
xserver.video_driver: intel

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


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

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

Title:
  many crashes

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

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


[Ubuntu-x-swat] [Bug 1210698] Re: [HP G62-b03SG] Incorrectly two monitors detected with radeon

2013-09-05 Thread Timo Aaltonen
** Package changed: xorg (Ubuntu) = xserver-xorg-video-ati (Ubuntu)

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

Title:
  [HP G62-b03SG] Incorrectly two monitors detected with radeon

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

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


[Ubuntu-x-swat] [Bug 1213359] Re: indicator-datetime x account google

2013-09-05 Thread Timo Aaltonen
** Package changed: xorg (Ubuntu) = indicator-datetime (Ubuntu)

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

Title:
  indicator-datetime x account google

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-datetime/+bug/1213359/+subscriptions

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


[Ubuntu-x-swat] [Bug 1219253] Re: terminal does not display correctly

2013-09-05 Thread Timo Aaltonen
you need to tell more than that..

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

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

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

Title:
  terminal does not display correctly

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Till Kamppeter
The final result of my bisect is actually what I guessed in the previous
comment (see output below). The patch (also below) is simple and one can
easily see that undoing it would solve the problem.

It seems that some monitors (including my monitor) report that they are
non-continuous frequency but in reality they are. The simplest way to
fix this bug is simply to undo the patch to support such buggy monitors,
the correct fix would be an exception list with the monitors which
support resolutions which they do not report.

There should perhaps be a possibility to override this manually by a
run-time configuration bit so that for all monitors the non-reported
resolutions get listed.

till@till-twist:~/kernel/linux-stable$ git bisect good
740922ee575f8ee4daa2bfd3db5f69dd7573fc76 is the first bad commit
commit 740922ee575f8ee4daa2bfd3db5f69dd7573fc76
Author: Paulo Zanoni paulo.r.zan...@intel.com
Date:   Fri Feb 15 13:36:27 2013 -0200

drm: don't add inferred modes for monitors that don't support them

commit 196e077dc165a307efbd9e7569f81bbdbcf18f65 upstream.

If bit 0 of the features byte (0x18) is set to 0, then, according to
the EDID spec, the display is non-continuous frequency (multi-mode)
and is only specified to accept the video timing formats that are
listed in Base EDID and certain Extension Blocks.

For more information, please see the EDID spec, check the notes of the
table that explains the Feature Support byte (18h) and also the
notes on the tables of the section that explains Display Range Limits
 Additional Timing Description Definition (tag #FDh).

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45729
Reviewed-by: Alex Deucher alexander.deuc...@amd.com
Reviewed-by: Adam Jackson a...@redhat.com
Signed-off-by: Paulo Zanoni paulo.r.zan...@intel.com
Signed-off-by: Dave Airlie airl...@redhat.com
Signed-off-by: Greg Kroah-Hartman gre...@linuxfoundation.org

:04 04 26e271499e4ff7746011a296e569a985126aeb3f 
d43c54ed20f43a1459c6adb7d922ee2be55c9317 M  drivers
till@till-twist:~/kernel/linux-stable$ 

Here is the patch:

till@till:~/ubuntu/linux/linux-stable$ git diff -r 740922e~..740922e
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 5a3770f..584d5fd 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -2020,7 +2020,8 @@ int drm_add_edid_modes(struct drm_connector *connector, st
num_modes += add_cvt_modes(connector, edid);
num_modes += add_standard_modes(connector, edid);
num_modes += add_established_modes(connector, edid);
-   num_modes += add_inferred_modes(connector, edid);
+   if (edid-features  DRM_EDID_FEATURE_DEFAULT_GTF)
+   num_modes += add_inferred_modes(connector, edid);
num_modes += add_cea_modes(connector, edid);
 
if (quirks  (EDID_QUIRK_PREFER_LARGE_60 | EDID_QUIRK_PREFER_LARGE_75))
till@till:~/ubuntu/linux/linux-stable$ 


** Bug watch added: freedesktop.org Bugzilla #45729
   https://bugs.freedesktop.org/show_bug.cgi?id=45729

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

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1210101] Re: system crashed when I start gdm or lightdm

2013-09-05 Thread Timo Aaltonen
there's nothing of interest in the logs, X seems to be running fine

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

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

Title:
  system crashed when I start gdm or lightdm

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

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


[Ubuntu-x-swat] [Bug 1208069] Re: USB Mouse stops working

2013-09-05 Thread Timo Aaltonen
** Package changed: xorg (Ubuntu) = linux (Ubuntu)

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

Title:
  USB Mouse stops working

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Till Kamppeter
I think I have found the culprit:

till@till-twist:~/kernel/linux-stable$ git bisect good
Bisecting: 4 revisions left to test after this (roughly 2 steps)
[740922ee575f8ee4daa2bfd3db5f69dd7573fc76] drm: don't add inferred modes for 
monitors that don't support them
till@till-twist:~/kernel/linux-stable$ 

The extra modes in reality work with the monitor, and they give extra
chances to find a best match between laptop screen and external
monitor/projector.

Anyway, I will continue the bisect to confirm ...

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1068404] Re: Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx upgrade

2013-09-05 Thread niniendowarrior
I absolutely have no experience in this and probably would require some
more help in the direction, if possible.

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

Title:
  Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx
  upgrade

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Till Kamppeter
Kamak, which product/component should I choose on bugzilla.kernel.org?
There is no DRM.

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 788971] Re: Vino (std vnc server) refresh problem with fglrx 8.780 in maverick (10.10)

2013-09-05 Thread MestreLion
Still a problem in Precise 12.04 and latest fglrx-update
2:12.104-0ubuntu0.0.1

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

Title:
  Vino (std vnc server) refresh problem with fglrx 8.780 in maverick
  (10.10)

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

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


[Ubuntu-x-swat] [Bug 1180881] Re: Touchscreen only works after suspend/resume on Lenovo ideapad P400 Touch

2013-09-05 Thread AceLan Kao
** Tags added: blocks-hwcert-enablement

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

Title:
  Touchscreen only works after suspend/resume on Lenovo ideapad P400
  Touch

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

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


[Ubuntu-x-swat] [Bug 1221403] [NEW] Pressing Caps Lock toggles LED even when mapped to another key

2013-09-05 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I have the the Caps Lock and Esc keys swapped; that is, pressing Caps
Lock generates an Esc keycode and vice versa. This was done using the
options in the keyboard settings, which seem to have disappeared
recently.

With this setup, pressing either the Esc and Caps Lock keys will toggle
the Caps Lock LED. As a result the LED does not accurately reflect the
state of the caps lock function. My expectation is that only the key
which toggles the caps lock function (in this case Esc) should toggle
the LED, and that the state of the LED should always accurately reflect
the state of the caps lock function.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unity-system-compositor 0.0.1+13.10.20130903-0ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic x86_64
ApportVersion: 2.12.1-0ubuntu3
Architecture: amd64
Date: Thu Sep  5 14:04:28 2013
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: Apple Inc. Device [106b:00eb]
InstallationDate: Installed on 2012-10-24 (316 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
LightDMLog: Error: [Errno 13] Permission denied: '/var/log/lightdm/lightdm.log'
MarkForUpload: True
SourcePackage: unity-system-compositor
UnitySystemCompositorLog: Error: [Errno 13] Permission denied: 
'/var/log/lightdm/unity-system-compositor.log'
UpgradeStatus: Upgraded to saucy on 2013-05-01 (127 days ago)
version.libdrm: libdrm2 2.4.46-1
version.lightdm: lightdm 1.7.12-0ubuntu1
version.mesa: libegl1-mesa-dev N/A

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


** Tags: amd64 apport-bug saucy
-- 
Pressing Caps Lock toggles LED even when mapped to another key
https://bugs.launchpad.net/bugs/1221403
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to xorg-server in Ubuntu.

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


[Ubuntu-x-swat] [Bug 1218815] Re: [radeon] Graphic glitches and screen corruption (vertical lines) on XMir surfaces only

2013-09-05 Thread Daniel van Vugt
OK then. I would blame bypass but based on comment #5 you're effectively
saying bypass is not the problem (because it still happens with bypass
disabled).

Other changes that landed between those two package versions (r1028..1033) are 
relatively insignificant. So the possibilities are:
1. One of those insignificant changes has caused the problem; or
2. You made a mistake when trying the workaround from bug 1218735; or
3. You downgraded some other package which has fixed the problem.

I think #3 is now most likely, so... Using the working packages,
please run ps auxw | grep mir and verify for us that Mir is in fact
running. Also try ps auxw | grep unity-system-compositor.

Please also try generating a full package list for both the working and 
non-working states, with:
dpkg -l  working.txt
and then break it again before doing:
dpkg -l  nonworking.txt
and attach those.

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

Title:
  [radeon] Graphic glitches and screen corruption (vertical lines) on
  XMir surfaces only

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

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


[Ubuntu-x-swat] [Bug 1221403] Re: Pressing Caps Lock toggles LED even when mapped to another key

2013-09-05 Thread Daniel van Vugt
** Package changed: unity-system-compositor (Ubuntu) = xorg-server
(Ubuntu)

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

Title:
  Pressing Caps Lock toggles LED even when mapped to another key

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

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


[Ubuntu-x-swat] [Bug 670578] Re: Explorer Mouse v1.0 model:1362 has hyper sensitive scroll wheel.

2013-09-05 Thread Matt Rogers
Same, still seeing it with exact symptoms and resolution (albeit archaic
and untrustworthy, not to mention an eyebrow raiser to an employer as
stated above).

Ubuntu 13.04 (64-bit)
Microsoft Wireless Mobile Mouse 3500 (x3 different ones do the same thing.  
Purple, Black  Red in case you care)
AMD Phenom II x4 965 CPU
12Gb DDR3 RAM
AMD Radeon HD 5700 Graphics

Not sure what else could matter.

I use the same port, different ports... Even using USB3 (blue in the
rear by the 2.0 plugs) or USB1.1 (front) is the same result.

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

Title:
  Explorer Mouse v1.0 model:1362 has hyper sensitive scroll wheel.

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

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


[Ubuntu-x-swat] [Bug 1211711] Re: (xmir) Xorg crashed with SIGABRT

2013-09-05 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1206633 ***
https://bugs.launchpad.net/bugs/1206633

** This bug is no longer a duplicate of bug 1211403
   (xmir) intel failed to become DRM master: EPERM
** This bug has been marked a duplicate of bug 1206633
   Mir/unity-system-compositor fails to start: Error opening DRM device

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

Title:
  (xmir) Xorg crashed with SIGABRT

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Christopher M. Penalver
** Tags removed: performing-bisect
** Tags added: bisect-done

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1167301] Re: 8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) external monitor 1920x1080

2013-09-05 Thread Christopher M. Penalver
Till, one may want to be cautious about submitting to bugzilla
initially, as some upstream maintainers are quite picky about the
preferred reporting venue, and presentation. Many have found high
probability of success following
https://wiki.ubuntu.com/KernelTeam/KernelTeamBugPolicies#Overview_on_Reporting_Bugs_Upstream
.

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

Title:
  8086:0166 [ThinkPad Twist S230u 3347] REGRESSION: Mirroring display
  works only with 1024x768 (4:3) whereas my laptop has 1366x768 (16:9) 
  external monitor 1920x1080 (16:9)

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

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


[Ubuntu-x-swat] [Bug 1219091] Re: xserver-xorg-video-radeon driver in main archive crashes xserver-xorg if xmir installed

2013-09-05 Thread Chris Halse Rogers
This should be fixed by xserver-xorg-video-ati 1:7.2.0-0ubuntu6,
although I still need to work out an appropriate dependency scheme to
prevent this from happening again.

** Changed in: xmir
   Status: Confirmed = Fix Released

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

Title:
  xserver-xorg-video-radeon driver in main archive crashes xserver-xorg
  if xmir installed

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

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


[Ubuntu-x-swat] [Bug 1219091] Re: xserver-xorg-video-radeon driver in main archive crashes xserver-xorg if xmir installed

2013-09-05 Thread Daniel van Vugt
In that case, Fix Released 16 hours ago...
https://launchpad.net/ubuntu/+source/xserver-xorg-video-ati


** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New = Fix Released

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Importance: Undecided = Critical

** Changed in: xmir
   Status: Fix Released = Invalid

** Changed in: xorg-server (Ubuntu)
   Status: New = Invalid

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

Title:
  xserver-xorg-video-radeon driver in main archive crashes xserver-xorg
  if xmir installed

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

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