All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 81382] New: Text console blanking does not go away
@ 2014-07-15 11:25 bugzilla-daemon
  2014-07-15 12:29 ` [Bug 81382] " bugzilla-daemon
                   ` (44 more replies)
  0 siblings, 45 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 11:25 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 4375 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

          Priority: medium
            Bug ID: 81382
          Assignee: dri-devel@lists.freedesktop.org
           Summary: Text console blanking does not go away
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: vda.linux@googlemail.com
          Hardware: Other
            Status: NEW
           Version: XOrg CVS
         Component: DRM/Radeon
           Product: DRI

Created attachment 102847
  --> https://bugs.freedesktop.org/attachment.cgi?id=102847&action=edit
dmesg

I log in as root on a text virtual console.
After about 10 minutes screen blanks.

Surprisingly, pressing a key does *not* unblank the screen!

Machine is still alive (I can ssh into it), and typed keys even reach the
console: I can type e.g. "ls -lR /usr" and I see disk indicator blinking, ls
process is visible in the ps in ssh session, etc.

This does not happen in X.

This is observed on Lenovo T60, on RHEL7 kernel and also on recent upstream
kernel 3.15.5.

Investigation had revealed that VT unblanking code, after all the hard work it
done to turn display back on, calls ATOM_LCD_BLOFF (backlight off, numeric
value 2) function.

Digging further, I discovered that fb_blank(blank=0) almost at its end calls
fb_notifier_call_chain(FB_EVENT_BLANK). Which calls
backlight.c::fb_notifier_callback(), which tries to set brightness via
radeon_atom_backlight_update_status(), which does
atombios_set_backlight_level(radeon_atom_bl_level()), but
radeon_atom_bl_level() is zero (it's an uint8_t, brightness level). So it's
essentially atombios_set_backlight_level(0) and it switches backlight off.

In drivers/gpu/drm/radeon/*, bd->props.brightness, surprisingly, is only set in
radeon_atom_backlight_init() and radeon_legacy_backlight_init(), all other
locations are only reading it. So, if this init code sets it to 0, then VT
unblanking code will use this zero value as brightness to restore, causing this
bug.

And indeed, that's what happens on the machine exhibiting this bug:

[    2.301563] radeon_atom_get_backlight_level_from_reg: RADEON_BIOS_2_SCRATCH
[    2.301633] radeon_atom_get_backlight_level_from_reg:
bios_2_scratch:00000000
[    2.301704] radeon_atom_backlight_init: bd->props.brightness=0
[    2.301780] radeon_atom_backlight_update_status: atombios_set_back

The full dmesg of the RHEL7 boot with many debug printks added is attached.
(Sorry, I started debugging it on RHEL7, I believe mainline does not differ
significantly).
It shows the following: After "setterm -blank 1 && sleep 60", VT blanking
triggers at ~362 seconds, and at ~370 seconds VT is trying to unblank because
of keyboard activity. The bug is evident here:

[  370.852058] fb_blank: fb_notifier_call_chain(FB_EVENT_BLANK)...
[  370.852061] fbcon_event_notify: case FB_EVENT_BLANK:
fbcon_fb_blanked(blank:0)
[  370.852063] fbcon_fb_blanked: do_unblank_screen(0)
[  370.852064] do_unblank_screen: entered on cpu 0
[  370.852066] do_unblank_screen: !console_blanked on cpu 0
[  370.852068] backlight:
drivers/video/backlight/backlight.c:fb_notifier_callback:
backlight_update_status()
[  370.852071] radeon_atom_backlight_update_status:
atombios_set_backlight_level()
[  370.852072] radeon_atom_bl_level: level = bd->props.brightness:0
[  370.852074] atombios_set_backlight_level(level:0)
[  370.852077] atombios_set_backlight_level: atom_execute_table(ATOM_LCD_BLOFF)
^^^^^^^^^^^^^^^^^^^^ THIS TURNS OFF DISPLAY ^^^^^^^^^^^^^^^^^
[  370.852083] atom_execute_table_locked(index:23,*params:ffff8802) returns 0
[  370.852085] backlight:
drivers/video/backlight/backlight.c:fb_notifier_callback:
backlight_update_status()
[  370.852940] fb_blank returns 0
[  370.852942] fbcon_blank: update_screen()...
[  370.862313] do_unblank_screen: done on cpu 0

Note: PCI error seen during blanking is not causing this bug. It happens on
first blanking (including Xserver screen blankings, which do not exhibit this
bug), and never repeats. Google says it's a known issue on Radeon, comes from
PCIe lanes reconfiguration.

I am unsure how to proceed from here. Maybe init code needs fixing to properly
read backlight brightness on this hardware? I think radeon people are more
qualified to take it from here. I'm willing to test patches.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 5809 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
@ 2014-07-15 12:29 ` bugzilla-daemon
  2014-07-15 13:37 ` bugzilla-daemon
                   ` (43 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 12:29 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 317 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #1 from Denys Vlasenko <vda.linux@googlemail.com> ---
Created attachment 102852
  --> https://bugs.freedesktop.org/attachment.cgi?id=102852&action=edit
Debugging messages patch

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1301 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
  2014-07-15 12:29 ` [Bug 81382] " bugzilla-daemon
@ 2014-07-15 13:37 ` bugzilla-daemon
  2014-07-15 13:55 ` bugzilla-daemon
                   ` (42 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 13:37 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 495 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

Alex Deucher <agd5f@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |david.heidelberger@ixit.cz

--- Comment #2 from Alex Deucher <agd5f@yahoo.com> ---
*** Bug 70207 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1941 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
  2014-07-15 12:29 ` [Bug 81382] " bugzilla-daemon
  2014-07-15 13:37 ` bugzilla-daemon
@ 2014-07-15 13:55 ` bugzilla-daemon
  2014-07-15 14:24 ` bugzilla-daemon
                   ` (41 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 13:55 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 360 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #3 from Alex Deucher <agd5f@yahoo.com> ---
Created attachment 102856
  --> https://bugs.freedesktop.org/attachment.cgi?id=102856&action=edit
set the default backlight level to something reasonable

Does this patch help?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1395 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (2 preceding siblings ...)
  2014-07-15 13:55 ` bugzilla-daemon
@ 2014-07-15 14:24 ` bugzilla-daemon
  2014-07-15 14:33 ` bugzilla-daemon
                   ` (40 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 14:24 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 422 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #4 from Denys Vlasenko <vda.linux@googlemail.com> ---
(In reply to comment #3)
> Created attachment 102856 [details] [review]
> set the default backlight level to something reasonable
> 
> Does this patch help?

Yes, it does.

Maybe add a comment there why this check is necessary?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1609 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (3 preceding siblings ...)
  2014-07-15 14:24 ` bugzilla-daemon
@ 2014-07-15 14:33 ` bugzilla-daemon
  2014-07-16 18:26 ` bugzilla-daemon
                   ` (39 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-15 14:33 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 192 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #5 from Alex Deucher <agd5f@yahoo.com> ---
Will do.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 939 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (4 preceding siblings ...)
  2014-07-15 14:33 ` bugzilla-daemon
@ 2014-07-16 18:26 ` bugzilla-daemon
  2014-09-05 20:58 ` bugzilla-daemon
                   ` (38 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-07-16 18:26 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 305 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #6 from David Heidelberger (okias) <david.heidelberger@ixit.cz> ---
Work perfectly on Toshiba A210-15j!


Tested-by: David Heidelberger <david.heidelberger@ixit.cz>

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1139 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (5 preceding siblings ...)
  2014-07-16 18:26 ` bugzilla-daemon
@ 2014-09-05 20:58 ` bugzilla-daemon
  2014-09-10 20:34 ` bugzilla-daemon
                   ` (37 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-05 20:58 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 541 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #7 from David Heidelberger (okias) <david.heidelberger@ixit.cz> ---
Ok, this fix work, but cause another problem (tested with 3.15.5+patch and
3.16.1).

When display goes off, backlight goes off.
When display goes on, backlight is set to MAX.
When display goes off again, backligh remains MAX.
After pressing key, LCD works, backlight stay at MAX level.
When display goes off, backlight is still MAX.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1313 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (6 preceding siblings ...)
  2014-09-05 20:58 ` bugzilla-daemon
@ 2014-09-10 20:34 ` bugzilla-daemon
  2014-09-11 10:42 ` bugzilla-daemon
                   ` (36 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-10 20:34 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1131 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #8 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
The above patch causes a problem on my Amilo Xi 2550 (RadeonHD 2600).

The behaviour for kernel-3.14.8-100.fc19 (without patch):

The value of /sys/class/backlight/radeon_bl0/brightness is 0. 
Whenever I write something (0-255) to 
/sys/class/backlight/radeon_bl0/brightness, 
the backlight is turned off, and I am not able to turn on the backlight again. 
However, I can still shutdown the system (Ctr+Alt+Fx, login as root, and give a 
shutdown command.

I can control the backlight by writing values 0-7 to
/sys/class/backlight/acpi_video0/brightness.

The behaviour for kernel-3.14.17-100.fc19 (with patch):

The backlight is turned off during the boot up process, when the kernel
switches into 
graphics mode.    
I commented out the lines 233-234 in
drivers/gpu/drm/radeon/atombios_encoders.c, 
and then, the problem disappeared, i.e., the backlight stays on when the kernel
switches 
into graphics mode.

Best regards,
Daniel

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1893 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (7 preceding siblings ...)
  2014-09-10 20:34 ` bugzilla-daemon
@ 2014-09-11 10:42 ` bugzilla-daemon
  2014-09-11 13:58 ` bugzilla-daemon
                   ` (35 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-11 10:42 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 854 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #9 from Denys Vlasenko <vda.linux@googlemail.com> ---
(In reply to comment #7)
> Ok, this fix work, but cause another problem (tested with 3.15.5+patch and
> 3.16.1).
> 
> When display goes off, backlight goes off.
> When display goes on, backlight is set to MAX.
> When display goes off again, backligh remains MAX.
> After pressing key, LCD works, backlight stay at MAX level.
> When display goes off, backlight is still MAX.

I would say it means that merely treating backlight value of 0 as MAX is not
the best idea.

Maybe we need an additional bool variable "failed to read initial BL value,
don't ever try to set it", set it if initial read of BL value is 0, and if it
is set, never try to change BL level?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1713 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (8 preceding siblings ...)
  2014-09-11 10:42 ` bugzilla-daemon
@ 2014-09-11 13:58 ` bugzilla-daemon
  2014-09-12 22:40 ` bugzilla-daemon
                   ` (34 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-11 13:58 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 646 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #10 from Alex Deucher <agd5f@yahoo.com> ---
(In reply to comment #7)
> Ok, this fix work, but cause another problem (tested with 3.15.5+patch and
> 3.16.1).
> 
> When display goes off, backlight goes off.
> When display goes on, backlight is set to MAX.
> When display goes off again, backligh remains MAX.
> After pressing key, LCD works, backlight stay at MAX level.
> When display goes off, backlight is still MAX.

Does the backlight respond correctly when adjusted via the sysfs blacklight
interface?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1485 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (9 preceding siblings ...)
  2014-09-11 13:58 ` bugzilla-daemon
@ 2014-09-12 22:40 ` bugzilla-daemon
  2014-09-13 20:43 ` bugzilla-daemon
                   ` (33 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-12 22:40 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 614 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #11 from Patrick <ps_mail@freenet.de> ---
I've got the same notebook as Daniel Kirsten, so I've searched for changes in
the kernel code, which caused the dark screen. From that point, I've found the
patch  from Alex Deucher and this bug report.

If I change /sys/class/backlight/radeon_bl0/brightness or
/sys/class/backlight/acpi_video0 the display stayes dark.

@Alex
is this what you wanted to know? If not, please let me know, how I could help
you to debug this problem!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1364 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (10 preceding siblings ...)
  2014-09-12 22:40 ` bugzilla-daemon
@ 2014-09-13 20:43 ` bugzilla-daemon
  2014-09-15 20:41 ` bugzilla-daemon
                   ` (32 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-13 20:43 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 812 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #12 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
(In reply to comment #11)
> I've got the same notebook as Daniel Kirsten, 

They sold different Amilo Xi 2550, there are even some Amilo Xi 2550 with 
an Nvidia graphic card.

> If I change /sys/class/backlight/radeon_bl0/brightness or
> /sys/class/backlight/acpi_video0 the display stayes dark.

I can control brightness by writing 0-7 into 
/sys/class/backlight/acpi_video0/brightness

You should comment out lines 233-234 in
drivers/gpu/drm/radeon/atombios_encoders.c,
i.e., 

/*  if (bd->props.brightness == 0)
    234                 bd->props.brightness = RADEON_MAX_BL_LEVEL;    */

then it works.

Daniel

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1686 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (11 preceding siblings ...)
  2014-09-13 20:43 ` bugzilla-daemon
@ 2014-09-15 20:41 ` bugzilla-daemon
  2014-09-15 20:47 ` bugzilla-daemon
                   ` (31 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-15 20:41 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 732 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #13 from Patrick <ps_mail@freenet.de> ---
(In reply to comment #12)

Hi Daniel,

correct, before that patch, the display was controllable through
/sys/class/backlight/acpi_video0/brightness.

After that patch, the display is always dark.

The only change which was done by Alex, was adding the lines, which you
commeted out. (If I understood the code correct, the other two lines, which
were removed, are obsolete and not needed).

So if you removed that two lines, then you've got the same code as before and
our Amilo (with ATI card) is working fine, but Denys problem will appear
again...

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1518 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (12 preceding siblings ...)
  2014-09-15 20:41 ` bugzilla-daemon
@ 2014-09-15 20:47 ` bugzilla-daemon
  2014-09-16  7:00 ` bugzilla-daemon
                   ` (30 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-15 20:47 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 908 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #14 from Alex Deucher <agd5f@yahoo.com> ---
(In reply to comment #11)
> If I change /sys/class/backlight/radeon_bl0/brightness or
> /sys/class/backlight/acpi_video0 the display stayes dark.
> 
> @Alex
> is this what you wanted to know? If not, please let me know, how I could
> help you to debug this problem!

Without the patch from this bug report applied (e.g., when your display is
working), which, if any, of the blacklight interfaces work?  It seems like
perhaps your laptop claims to have a GPU controlled backlight, but really uses
an external backlight control.  Can you attach a copy of your vbios?  TO get a
copy of your vbios:

(as root)
(use lspci to get the bus id)
cd /sys/bus/pci/devices/<pci bus id>
echo 1 > rom
cat rom > /tmp/vbios.rom
echo 0 > rom

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1761 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (13 preceding siblings ...)
  2014-09-15 20:47 ` bugzilla-daemon
@ 2014-09-16  7:00 ` bugzilla-daemon
  2014-09-16  7:01 ` bugzilla-daemon
                   ` (29 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-16  7:00 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 303 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #15 from Patrick <ps_mail@freenet.de> ---
Created attachment 106353
  --> https://bugs.freedesktop.org/attachment.cgi?id=106353&action=edit
lspci output for amilo

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1186 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (14 preceding siblings ...)
  2014-09-16  7:00 ` bugzilla-daemon
@ 2014-09-16  7:01 ` bugzilla-daemon
  2014-09-16  7:02 ` bugzilla-daemon
                   ` (28 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-16  7:01 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 291 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #16 from Patrick <ps_mail@freenet.de> ---
Created attachment 106354
  --> https://bugs.freedesktop.org/attachment.cgi?id=106354&action=edit
from Amilo

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1150 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (15 preceding siblings ...)
  2014-09-16  7:01 ` bugzilla-daemon
@ 2014-09-16  7:02 ` bugzilla-daemon
  2014-09-16  7:17 ` bugzilla-daemon
                   ` (27 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-16  7:02 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 415 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

Patrick <ps_mail@freenet.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #106354|from Amilo                  |vbios from Amilo
        description|                            |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1052 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (16 preceding siblings ...)
  2014-09-16  7:02 ` bugzilla-daemon
@ 2014-09-16  7:17 ` bugzilla-daemon
  2014-09-17  1:00 ` bugzilla-daemon
                   ` (26 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-16  7:17 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 575 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #17 from Patrick <ps_mail@freenet.de> ---
(In reply to comment #14)

This could be true. I can control it via
/sys/class/backlight/acpi_video0/brightness. If I change
/sys/class/backlight/radeon_bl0/brightness then the display is nearly black and
cannot be restored.

After reboot the following values are set:
acpi_video0 = 7
radeon_bl0 = 0

I've attached a lspci -vvv to " lspci output for amilo" and the vbios to "vbios
from Amilo"

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1381 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (17 preceding siblings ...)
  2014-09-16  7:17 ` bugzilla-daemon
@ 2014-09-17  1:00 ` bugzilla-daemon
  2014-09-17  1:04 ` bugzilla-daemon
                   ` (25 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17  1:00 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 425 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

Alex Deucher <agd5f@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #106354|text/plain                  |application/octet-stream
          mime type|                            |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1062 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (18 preceding siblings ...)
  2014-09-17  1:00 ` bugzilla-daemon
@ 2014-09-17  1:04 ` bugzilla-daemon
  2014-09-17  7:07 ` bugzilla-daemon
                   ` (24 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17  1:04 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 235 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #18 from Alex Deucher <agd5f@yahoo.com> ---
Can you attach the lspci -vnn output for your GPU?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 983 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (19 preceding siblings ...)
  2014-09-17  1:04 ` bugzilla-daemon
@ 2014-09-17  7:07 ` bugzilla-daemon
  2014-09-17 15:38 ` bugzilla-daemon
                   ` (23 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17  7:07 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 319 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #19 from Patrick <ps_mail@freenet.de> ---
Created attachment 106410
  --> https://bugs.freedesktop.org/attachment.cgi?id=106410&action=edit
lspci -vnn for Amilo

sure, here it is

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (20 preceding siblings ...)
  2014-09-17  7:07 ` bugzilla-daemon
@ 2014-09-17 15:38 ` bugzilla-daemon
  2014-09-17 15:39 ` bugzilla-daemon
                   ` (22 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17 15:38 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 470 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #20 from Alex Deucher <agd5f@yahoo.com> ---
Created attachment 106441
  --> https://bugs.freedesktop.org/attachment.cgi?id=106441&action=edit
patch 1/2

Do the attached patches help?  The first patch adds a backlight module
parameter to disable the gpu backlight device for testing.  The second adds a
quirk for the Amilo laptop.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1414 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (21 preceding siblings ...)
  2014-09-17 15:38 ` bugzilla-daemon
@ 2014-09-17 15:39 ` bugzilla-daemon
  2014-09-17 16:42 ` bugzilla-daemon
                   ` (21 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17 15:39 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 292 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #21 from Alex Deucher <agd5f@yahoo.com> ---
Created attachment 106442
  --> https://bugs.freedesktop.org/attachment.cgi?id=106442&action=edit
patch 2/2

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1236 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (22 preceding siblings ...)
  2014-09-17 15:39 ` bugzilla-daemon
@ 2014-09-17 16:42 ` bugzilla-daemon
  2014-09-18  7:54 ` bugzilla-daemon
                   ` (20 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-17 16:42 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 340 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #22 from Patrick <ps_mail@freenet.de> ---
Thanks for the patch, but I'm on vacation till 26th September, so long I cannot
test it.

@Daniel
As you've got the same problem, could you test the patches?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1090 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (23 preceding siblings ...)
  2014-09-17 16:42 ` bugzilla-daemon
@ 2014-09-18  7:54 ` bugzilla-daemon
  2014-09-18 13:09 ` bugzilla-daemon
                   ` (19 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-18  7:54 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 384 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #23 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
I can test the patches from 2014-09-17 on my amilo.

Can I apply them to the current fedora kernel code 3.14.18-100?

Should I apply both patches or test each patch separately?

Daniel

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1147 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (24 preceding siblings ...)
  2014-09-18  7:54 ` bugzilla-daemon
@ 2014-09-18 13:09 ` bugzilla-daemon
  2014-09-18 13:10 ` bugzilla-daemon
                   ` (18 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-18 13:09 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 210 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #24 from Alex Deucher <agd5f@yahoo.com> ---
Apply them both together.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 958 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (25 preceding siblings ...)
  2014-09-18 13:09 ` bugzilla-daemon
@ 2014-09-18 13:10 ` bugzilla-daemon
  2014-09-18 19:27 ` bugzilla-daemon
                   ` (17 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-18 13:10 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 409 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #25 from Alex Deucher <agd5f@yahoo.com> ---
(In reply to comment #24)
> Apply them both together.

Well, assuming your laptop has the same pci ids as Patrick.  If not, just
append radeon.backlight=0 to the kernel command line in grub and attach your
lspci -vnn output.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (26 preceding siblings ...)
  2014-09-18 13:10 ` bugzilla-daemon
@ 2014-09-18 19:27 ` bugzilla-daemon
  2014-09-18 19:28 ` bugzilla-daemon
                   ` (16 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-18 19:27 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1021 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #26 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
(In reply to comment #25)

The pci-id of the VGA Controller is 01:00.0 for my Amilo.

However, I cannot apply the patches to the 3.14.18-100.fc19 kernel:

patch --dry-run -p1 <
~/software/0001-drm-radeon-add-a-module-parameter-for-backlight-cont.patch
checking file drivers/gpu/drm/radeon/radeon.h
Hunk #1 FAILED at 106.
1 out of 1 hunk FAILED
checking file drivers/gpu/drm/radeon/radeon_drv.c
Hunk #1 FAILED at 181.
Hunk #2 succeeded at 237 with fuzz 2 (offset -26 lines).
1 out of 2 hunks FAILED
checking file drivers/gpu/drm/radeon/radeon_encoders.c
Exit 1


patch --dry-run -p1 <
~/software/0002-drm-radeon-add-a-backlight-quirk-for-Amilo-Xi-2550.patch
checking file drivers/gpu/drm/radeon/radeon_encoders.c
Hunk #1 FAILED at 173.
1 out of 1 hunk FAILED
Exit 1


Which kernel should I use to test the patches?

Daniel

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1830 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (27 preceding siblings ...)
  2014-09-18 19:27 ` bugzilla-daemon
@ 2014-09-18 19:28 ` bugzilla-daemon
  2014-09-19 13:14 ` bugzilla-daemon
                   ` (15 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-18 19:28 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 215 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #27 from Alex Deucher <agd5f@yahoo.com> ---
They are written against 3.17.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 963 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (28 preceding siblings ...)
  2014-09-18 19:28 ` bugzilla-daemon
@ 2014-09-19 13:14 ` bugzilla-daemon
  2014-09-19 15:38 ` bugzilla-daemon
                   ` (14 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-19 13:14 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 354 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #28 from Alex Deucher <agd5f@yahoo.com> ---
(In reply to comment #26)
> (In reply to comment #25)
> 
> The pci-id of the VGA Controller is 01:00.0 for my Amilo.

That's the bus id.  I need the output of lspci -vnn

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1219 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (29 preceding siblings ...)
  2014-09-19 13:14 ` bugzilla-daemon
@ 2014-09-19 15:38 ` bugzilla-daemon
  2014-09-19 15:40 ` bugzilla-daemon
                   ` (13 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-19 15:38 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 499 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #29 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
I tested the patches from 2014-09-17 against 3.17-rc5.

When I applied both patches,  the backlight was not turned off, when the kernel
switched into graphics mode. 
The kernel worked very well.

Without the patches, the backlight was turned off, when the kernel switched
into graphics mode.

Daniel

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1262 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (30 preceding siblings ...)
  2014-09-19 15:38 ` bugzilla-daemon
@ 2014-09-19 15:40 ` bugzilla-daemon
  2014-09-19 16:20 ` bugzilla-daemon
                   ` (12 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-19 15:40 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 327 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #30 from Daniel Kirsten <daniel-kirsten-72@excite.com> ---
Created attachment 106554
  --> https://bugs.freedesktop.org/attachment.cgi?id=106554&action=edit
lspci -vnn for Daniel's amilo

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1241 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (31 preceding siblings ...)
  2014-09-19 15:40 ` bugzilla-daemon
@ 2014-09-19 16:20 ` bugzilla-daemon
  2014-09-27 21:36 ` bugzilla-daemon
                   ` (11 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-19 16:20 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 628 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #31 from Alex Deucher <agd5f@yahoo.com> ---
(In reply to comment #30)
> Created attachment 106554 [details]
> lspci -vnn for Daniel's amilo

You have the same configuration as Patrick.

(In reply to comment #29)
> I tested the patches from 2014-09-17 against 3.17-rc5.
> 
> When I applied both patches,  the backlight was not turned off, when the
> kernel switched into graphics mode. 
> The kernel worked very well.

Great.  I'll make sure the patches get upstream.  Thanks for testing.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1746 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (32 preceding siblings ...)
  2014-09-19 16:20 ` bugzilla-daemon
@ 2014-09-27 21:36 ` bugzilla-daemon
  2014-09-28  0:40 ` bugzilla-daemon
                   ` (10 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-27 21:36 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 404 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #32 from Patrick <ps_mail@freenet.de> ---
I've just tested the patches on my notebook, too. Also here, the problem is
fixed, with the patches you provided.

Do you already know, in which upstream versions, the fix will be published?
3.17? Or in an 3.16.x already?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1150 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (33 preceding siblings ...)
  2014-09-27 21:36 ` bugzilla-daemon
@ 2014-09-28  0:40 ` bugzilla-daemon
  2015-04-21 20:05 ` bugzilla-daemon
                   ` (9 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2014-09-28  0:40 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 347 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #33 from Dieter Nützel <Dieter@nuetzel-hh.de> ---
They are in Linus 3.17 tree:

https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=005f800508eb391480f463dad3d54e5b4ec67d57

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1252 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (34 preceding siblings ...)
  2014-09-28  0:40 ` bugzilla-daemon
@ 2015-04-21 20:05 ` bugzilla-daemon
  2015-04-21 20:11 ` bugzilla-daemon
                   ` (8 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-21 20:05 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1347 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #34 from Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> ---
Hi, it took me quite some time to get here, but hopefully you can still solve
my problem.
I'm running a 2006 Intel iMac (Core Duo) under Unbuntu 12.04LTS server, which
sits on my desk and almost never log to the console, which would normally go
blank a few minutes after boot.

There is strong evidence that this patch found its way to my "stock" kernel
back in september 2014, and since then my iMac exhibits the following behaviour
after boot:
- whenever the console blanking activates, backlight goes to MAX (with my LCD
screen going all strange and overheating — even causing fans to blow)
- only way out is to echo 0 > /sys/class/backlight/radeon_bl0/brightness —
which I 'crontabbed' but is not exactly satisfactory.
- any other value causes the backlight to go all the way up and overheat.

I did try to "echo 1 > /sys/class/backlight/acpi_video0/brightness" today, and
that caused the iMac to reboot.

I have not experimented anything else, but would be happy to help.

uname is "Linux xxx 3.13.0-49-generic #81~precise1-Ubuntu SMP Wed Mar 25
16:32:40 UTC 2015 i686 i686 i386 GNU/Linux"

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 2178 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (35 preceding siblings ...)
  2015-04-21 20:05 ` bugzilla-daemon
@ 2015-04-21 20:11 ` bugzilla-daemon
  2015-04-21 20:27 ` bugzilla-daemon
                   ` (7 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-21 20:11 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 700 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mig+freedesktop@chene.vingt
                   |                            |-et-un-cinq.fr

--- Comment #35 from Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> ---
Created attachment 115253
  --> https://bugs.freedesktop.org/attachment.cgi?id=115253&action=edit
lspci -vnn for Christophe's iMac

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 2135 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (36 preceding siblings ...)
  2015-04-21 20:11 ` bugzilla-daemon
@ 2015-04-21 20:27 ` bugzilla-daemon
  2015-04-22  9:32 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-21 20:27 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 336 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #36 from Alex Deucher <alexdeucher@gmail.com> ---
Should be fixed in this patch:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=b7bc596ebbe0cddc97d76ef9309f64471bbf13eb

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1211 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (37 preceding siblings ...)
  2015-04-21 20:27 ` bugzilla-daemon
@ 2015-04-22  9:32 ` bugzilla-daemon
  2015-04-23  6:02 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-22  9:32 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 483 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #37 from Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> ---
Apparently only "set the default backlight level to something reasonable" patch
was applied to 3.13, so I don't have the "radeon_encoder_add_backlight"
function, thus this won't work at all.

Would you suggest I first apply the patch published here on 2014-09-17?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1278 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (38 preceding siblings ...)
  2015-04-22  9:32 ` bugzilla-daemon
@ 2015-04-23  6:02 ` bugzilla-daemon
  2015-04-23 14:12 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-23  6:02 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 428 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #38 from Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> ---
Well, I did, '2014-09-17 15:38 UTC' and '2014-09-17 15:39 UTC' patches apply ok
and it works.  Sorry for the inconvenience.
(perhaps one should consider pushing these two upstream instead of the fist
one?)...

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1203 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (39 preceding siblings ...)
  2015-04-23  6:02 ` bugzilla-daemon
@ 2015-04-23 14:12 ` bugzilla-daemon
  2015-04-23 14:15 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-23 14:12 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 497 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #39 from Alex Deucher <alexdeucher@gmail.com> ---
(In reply to Christophe Migliorini from comment #38)
> Well, I did, '2014-09-17 15:38 UTC' and '2014-09-17 15:39 UTC' patches apply
> ok and it works.  Sorry for the inconvenience.
> (perhaps one should consider pushing these two upstream instead of the fist
> one?)...

Those patches are upstream as well.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1323 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (40 preceding siblings ...)
  2015-04-23 14:12 ` bugzilla-daemon
@ 2015-04-23 14:15 ` bugzilla-daemon
  2015-04-24 13:59 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-23 14:15 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 786 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #40 from Alex Deucher <alexdeucher@gmail.com> ---
(In reply to Alex Deucher from comment #39)
> (In reply to Christophe Migliorini from comment #38)
> > Well, I did, '2014-09-17 15:38 UTC' and '2014-09-17 15:39 UTC' patches apply
> > ok and it works.  Sorry for the inconvenience.
> > (perhaps one should consider pushing these two upstream instead of the fist
> > one?)...
> 
> Those patches are upstream as well.

http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bc13018b5eba26ca229b33763c9e61fac31a1925
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=8aff6ad5a393b8e2ad00dce4d278ecf41397bf0d

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1931 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (41 preceding siblings ...)
  2015-04-23 14:15 ` bugzilla-daemon
@ 2015-04-24 13:59 ` bugzilla-daemon
  2016-08-13 12:01 ` bugzilla-daemon
  2016-08-15 13:40 ` bugzilla-daemon
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2015-04-24 13:59 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 286 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #41 from Christophe Migliorini <mig+freedesktop@chene.vingt-et-un-cinq.fr> ---
Good. Hopefully into 12.04LTS before it's no longer supported :-).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1061 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (42 preceding siblings ...)
  2015-04-24 13:59 ` bugzilla-daemon
@ 2016-08-13 12:01 ` bugzilla-daemon
  2016-08-15 13:40 ` bugzilla-daemon
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2016-08-13 12:01 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 230 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

--- Comment #42 from David Heidelberg (okias) <david@ixit.cz> ---
Maybe this bug can be closed?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 996 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

* [Bug 81382] Text console blanking does not go away
  2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
                   ` (43 preceding siblings ...)
  2016-08-13 12:01 ` bugzilla-daemon
@ 2016-08-15 13:40 ` bugzilla-daemon
  44 siblings, 0 replies; 46+ messages in thread
From: bugzilla-daemon @ 2016-08-15 13:40 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 430 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=81382

Alex Deucher <alexdeucher@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1247 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 46+ messages in thread

end of thread, other threads:[~2016-08-15 13:40 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-15 11:25 [Bug 81382] New: Text console blanking does not go away bugzilla-daemon
2014-07-15 12:29 ` [Bug 81382] " bugzilla-daemon
2014-07-15 13:37 ` bugzilla-daemon
2014-07-15 13:55 ` bugzilla-daemon
2014-07-15 14:24 ` bugzilla-daemon
2014-07-15 14:33 ` bugzilla-daemon
2014-07-16 18:26 ` bugzilla-daemon
2014-09-05 20:58 ` bugzilla-daemon
2014-09-10 20:34 ` bugzilla-daemon
2014-09-11 10:42 ` bugzilla-daemon
2014-09-11 13:58 ` bugzilla-daemon
2014-09-12 22:40 ` bugzilla-daemon
2014-09-13 20:43 ` bugzilla-daemon
2014-09-15 20:41 ` bugzilla-daemon
2014-09-15 20:47 ` bugzilla-daemon
2014-09-16  7:00 ` bugzilla-daemon
2014-09-16  7:01 ` bugzilla-daemon
2014-09-16  7:02 ` bugzilla-daemon
2014-09-16  7:17 ` bugzilla-daemon
2014-09-17  1:00 ` bugzilla-daemon
2014-09-17  1:04 ` bugzilla-daemon
2014-09-17  7:07 ` bugzilla-daemon
2014-09-17 15:38 ` bugzilla-daemon
2014-09-17 15:39 ` bugzilla-daemon
2014-09-17 16:42 ` bugzilla-daemon
2014-09-18  7:54 ` bugzilla-daemon
2014-09-18 13:09 ` bugzilla-daemon
2014-09-18 13:10 ` bugzilla-daemon
2014-09-18 19:27 ` bugzilla-daemon
2014-09-18 19:28 ` bugzilla-daemon
2014-09-19 13:14 ` bugzilla-daemon
2014-09-19 15:38 ` bugzilla-daemon
2014-09-19 15:40 ` bugzilla-daemon
2014-09-19 16:20 ` bugzilla-daemon
2014-09-27 21:36 ` bugzilla-daemon
2014-09-28  0:40 ` bugzilla-daemon
2015-04-21 20:05 ` bugzilla-daemon
2015-04-21 20:11 ` bugzilla-daemon
2015-04-21 20:27 ` bugzilla-daemon
2015-04-22  9:32 ` bugzilla-daemon
2015-04-23  6:02 ` bugzilla-daemon
2015-04-23 14:12 ` bugzilla-daemon
2015-04-23 14:15 ` bugzilla-daemon
2015-04-24 13:59 ` bugzilla-daemon
2016-08-13 12:01 ` bugzilla-daemon
2016-08-15 13:40 ` bugzilla-daemon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.