Page MenuHomeFreeBSD

powerpc64: Avoid type promotion
ClosedPublic

Authored by breno.leitao_gmail.com on Jun 11 2018, 7:27 PM.
Tags
None
Referenced Files
F146213588: D15763.id43614.diff
Sat, Feb 28, 7:38 PM
Unknown Object (File)
Sat, Feb 28, 10:42 AM
Unknown Object (File)
Tue, Feb 24, 3:58 PM
Unknown Object (File)
Thu, Feb 19, 10:34 AM
Unknown Object (File)
Sun, Feb 8, 3:02 PM
Unknown Object (File)
Sun, Feb 8, 5:46 AM
Unknown Object (File)
Sun, Feb 8, 3:06 AM
Unknown Object (File)
Sat, Feb 7, 9:39 PM
Subscribers

Details

Summary

There is a type promotion that transform count = -1 into a unsigned int causing
the default TCE SEG SIZE not being returned on a Boston POWER9 machine.
This machine does not have the 'ibm,supported-tce-sizes' entries, thus, count
is set to -1, and the function continue to execute instead of returning.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 17183
Build 17033: arc lint + arc unit

Event Timeline

This can be simplified to just "if (count < (int)sizeof(cell_t))"

Adjusting to follow jhibbits' suggestion.

sys/powerpc/powernv/opal_pci.c
224

Looks good, except the semicolon at the end ;)

This revision is now accepted and ready to land.Jun 12 2018, 6:45 PM
This revision was automatically updated to reflect the committed changes.