Page MenuHomeFreeBSD

Make cam_getccb(3) zero the whole ccb, not just the header
ClosedPublic

Authored by trasz on Nov 23 2020, 1:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 8, 2:39 PM
Unknown Object (File)
Mar 5 2025, 7:01 AM
Unknown Object (File)
Feb 24 2025, 9:33 PM
Unknown Object (File)
Feb 24 2025, 7:24 PM
Unknown Object (File)
Feb 24 2025, 4:07 PM
Unknown Object (File)
Feb 23 2025, 3:43 PM
Unknown Object (File)
Jan 8 2025, 2:27 AM
Unknown Object (File)
Jan 2 2025, 1:17 PM
Subscribers

Details

Summary

Make cam_getccb(3) zero the whole ccb, not just the header.

Leaving zeroing to the clients leads to error-prone pointer
tricks (zeroing needs to preserve the CCB header), and this
code is not performance-critical, so there's really no reason
to not do it.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 34975
Build 31968: arc lint + arc unit

Event Timeline

trasz requested review of this revision.Nov 23 2020, 1:33 PM
rpokala added a subscriber: rpokala.

LGTM, but I'm not authoritative when it comes to CAM.

I believe this is a good change. There's no performance reason to avoid zeroing, and in the kernel we do this:

new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK);

so this makes code that runs in both places more similar.

This revision is now accepted and ready to land.Nov 23 2020, 7:12 PM