Page MenuHomeFreeBSD

powerpc64: Avoid type promotion
ClosedPublic

Authored by breno.leitao_gmail.com on Jun 11 2018, 7:27 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Oct 19, 8:07 AM
Unknown Object (File)
Sun, Oct 19, 4:13 AM
Unknown Object (File)
Sun, Oct 19, 2:46 AM
Unknown Object (File)
Wed, Oct 15, 3:08 AM
Unknown Object (File)
Thu, Oct 9, 2:30 AM
Unknown Object (File)
Sun, Oct 5, 5:20 AM
Unknown Object (File)
Sep 16 2025, 11:41 PM
Unknown Object (File)
Sep 15 2025, 11:49 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 17177
Build 17029: 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
225–227

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.