Page MenuHomeFreeBSD

Split crp_buf into a union.
ClosedPublic

Authored by jhb on Jan 16 2018, 12:55 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 15, 9:40 AM
Unknown Object (File)
Sat, Mar 14, 4:35 PM
Unknown Object (File)
Thu, Mar 5, 11:32 AM
Unknown Object (File)
Wed, Mar 4, 5:04 PM
Unknown Object (File)
Wed, Mar 4, 10:48 AM
Unknown Object (File)
Feb 8 2026, 12:37 PM
Unknown Object (File)
Feb 7 2026, 10:30 PM
Unknown Object (File)
Jan 31 2026, 3:00 PM
Subscribers

Details

Summary

This adds explicit crp_mbuf and crp_uio pointers of the right type to
replace casts of crp_buf. This does not sweep through changing existing
code, but new code should use the correct fields instead of casts.

Test Plan
  • tested with cryptocheck and the in-tree cryptotest tests against cryptosoft, aesni0, and ccr0

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

As a note, anonymous union member is only in C11, for C99 this is a gnu extension.

This revision is now accepted and ready to land.Jan 16 2018, 3:23 PM

Yes, though we already use anonymous unions in the tree now (e.g. struct mbuf uses them).

This revision was automatically updated to reflect the committed changes.