Changeset 6040

Show
Ignore:
Timestamp:
04/09/12 21:33:35 (14 months ago)
Author:
khali
Message:

Avoid probing EDID addresses (0x50-0x57) on graphics card adapters.
We had one report that it caused trouble:
 http://lists.lm-sensors.org/pipermail/lm-sensors/2012-April/035847.html
Even though it's not yet clear what happened, let's play it safe.
This fixes ticket #2386.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r6038 r6040  
    44SVN HEAD 
    55  sensors-detect: Don't choke on systems without PCI 
     6                  Avoid probing EDID addresses on graphics cards (#2386) 
    67 
    783.3.2 (2012-03-14) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r6038 r6040  
    36613661                chomp($input); 
    36623662                @not_to_scan = parse_not_to_scan(0x03, 0x77, $input); 
     3663        } elsif (($class & 0xff00) == 0x0300) { 
     3664                # Skip EDID addresses by default on graphics adapters 
     3665                @not_to_scan = parse_not_to_scan(0x03, 0x77, "0x50-0x57"); 
    36633666        } 
    36643667