Page MenuHomeFreeBSD

Fix clang 15 warning in cxgbe
ClosedPublic

Authored by dim on Jul 16 2022, 7:20 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 15, 10:21 PM
Unknown Object (File)
Fri, Mar 14, 1:47 AM
Unknown Object (File)
Wed, Mar 12, 9:15 AM
Unknown Object (File)
Feb 16 2025, 12:50 PM
Unknown Object (File)
Feb 4 2025, 1:50 PM
Unknown Object (File)
Jan 27 2025, 1:45 PM
Unknown Object (File)
Jan 26 2025, 11:02 PM
Unknown Object (File)
Jan 18 2025, 3:00 AM
Subscribers

Details

Summary

Clang 15 warns:

sys/dev/cxgbe/cudbg/cudbg_lib.c:2949:6: error: variable 'i' set but not used [-Werror,-Wunused-but-set-variable]
        int i = 0;
            ^

Apparently 'i' was meant as the current retry counter, but '1' was used
in the while loop comparison instead, making the loop potentially
infinite, if 'busy' never gets reset.

MFC after: 3 days

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dim requested review of this revision.Jul 16 2022, 7:20 PM
sys/dev/cxgbe/cudbg/cudbg_lib.c
2953

Should there be a bitwise or boolean and here?

sys/dev/cxgbe/cudbg/cudbg_lib.c
2953

Oh that's a good one. Short-circuit evaluation won't matter in this case, so it should be && instead. I'd also think that busy should be volatile, but it could be that t4_read_reg() takes care of that?

sys/dev/cxgbe/cudbg/cudbg_lib.c
2953

Yes, the t4_reg_read will take care of that.

Please commit with boolean &&.

This revision is now accepted and ready to land.Jul 16 2022, 11:51 PM
This revision was automatically updated to reflect the committed changes.