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, Oct 12, 5:46 AM
Unknown Object (File)
Sat, Oct 11, 5:54 PM
Unknown Object (File)
Sun, Sep 28, 9:54 AM
Unknown Object (File)
Sun, Sep 14, 11:55 PM
Unknown Object (File)
Sep 14 2025, 12:31 PM
Unknown Object (File)
Aug 4 2025, 8:58 AM
Unknown Object (File)
Aug 3 2025, 6:21 PM
Unknown Object (File)
Jul 27 2025, 10:22 AM
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.