MFC r345611:Teach jedec_dimm(4) to be more forgiving of non-fatal errors.It looks like some DIMMs claim to have a TSOD, but actually don't. Someclaim they weren't able to change the SPD page, bu
MFC r345611:Teach jedec_dimm(4) to be more forgiving of non-fatal errors.It looks like some DIMMs claim to have a TSOD, but actually don't. Someclaim they weren't able to change the SPD page, but they did. Neither ofthose should be fatal errors.
show more ...
Remove jedec_ts(4)The jedec_ts(4) driver has been marked as deprecated in stable/11, and isnow being removed from -HEAD. Add a notice in UPDATING, and update the fewremaining references (regardin
Remove jedec_ts(4)The jedec_ts(4) driver has been marked as deprecated in stable/11, and isnow being removed from -HEAD. Add a notice in UPDATING, and update the fewremaining references (regarding jedec_dimm(4)'s compatibility and history)to reflect the fact that jedec_ts(4) is now deleted.Reviewed by: avgRelnotes: yesDifferential Revision: https://reviews.freebsd.org/D16537
jedec_dimm: Use correct string length when populating sc->slotid_strDon't limit the copy to the size of the target string *pointer* (always4 on 32-bit / 8 on 64-bit). Instead, just use strdup().
jedec_dimm: Use correct string length when populating sc->slotid_strDon't limit the copy to the size of the target string *pointer* (always4 on 32-bit / 8 on 64-bit). Instead, just use strdup().Reported by: CoverityCID: 1386912Reviewed by: cem, impMFC after: 1 week
jedec_dimm(4): report asset info and temperatures for DDR3 and DDR4 DIMMsA super-set of the functionality of jedec_ts(4). jedec_dimm(4) reports assetinformation (Part Number, Serial Number) encode
jedec_dimm(4): report asset info and temperatures for DDR3 and DDR4 DIMMsA super-set of the functionality of jedec_ts(4). jedec_dimm(4) reports assetinformation (Part Number, Serial Number) encoded in the "Serial PresenceDetect" (SPD) data on JEDEC DDR3 and DDR4 DIMMs. It also calculates andreports the memory capacity of the DIMM, in megabytes. If the DIMM includesa "Thermal Sensor On DIMM" (TSOD), the temperature is also reported.Reviewed by: cemMFC after: 1 weekRelnotes: yesSponsored by: PanasasDifferential Revision: https://reviews.freebsd.org/D14392Discussed with: avg, cemTested by: avg, cem (previous version, no semantic changes)