[haiku-commits] haiku: hrev43849 - src/add-ons/accelerants/radeon_hd/atombios

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 13 Mar 2012 03:46:23 +0100 (CET)

hrev43849 adds 1 changeset to branch 'master'
old head: f1b3e74461d81f55f046392343fac6ccef750a3f
new head: 89e7764d9892c90a6a0110c00e70ae9efe18f0e3

----------------------------------------------------------------------------

89e7764: radeon_hd: Tune AtomBIOS failure threshold
  
  * Fixes edge cases of AtomBIOS parser failing
    before there really was a problem.
  * Hopefully resolves the rest of the random
    failures and #5722
  * If this doesn't work, I'll rewrite the parser
    to use jiffies (snooze)
  * Thanks for all the testing Disreali!

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev43849
Commit:      89e7764d9892c90a6a0110c00e70ae9efe18f0e3
URL:         http://cgit.haiku-os.org/haiku/commit/?id=89e7764
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Tue Mar 13 02:43:38 2012 UTC

Ticket:      https://dev.haiku-os.org/ticket/5722

----------------------------------------------------------------------------

1 files changed, 1 insertions(+), 1 deletions(-)
.../accelerants/radeon_hd/atombios/atom.cpp        |    2 +-

----------------------------------------------------------------------------

diff --git a/src/add-ons/accelerants/radeon_hd/atombios/atom.cpp 
b/src/add-ons/accelerants/radeon_hd/atombios/atom.cpp
index e10a2ce..d23321f 100644
--- a/src/add-ons/accelerants/radeon_hd/atombios/atom.cpp
+++ b/src/add-ons/accelerants/radeon_hd/atombios/atom.cpp
@@ -39,7 +39,7 @@
  * Number of repeat AtomBIOS jmp operations
  * before bailing due to stuck in a loop
  */
-#define ATOM_OP_JMP_TIMEOUT 128
+#define ATOM_OP_JMP_TIMEOUT 512
 
 // *** Tracing
 #undef TRACE


Other related posts:

  • » [haiku-commits] haiku: hrev43849 - src/add-ons/accelerants/radeon_hd/atombios - kallisti5