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)
Wed, Mar 27, 6:56 PM
Unknown Object (File)
Thu, Mar 7, 11:48 PM
Unknown Object (File)
Feb 19 2024, 12:32 PM
Unknown Object (File)
Dec 22 2023, 10:56 PM
Unknown Object (File)
Dec 13 2023, 5:26 AM
Unknown Object (File)
Oct 12 2023, 12:45 AM
Unknown Object (File)
Sep 30 2023, 1:38 PM
Unknown Object (File)
Sep 16 2023, 3:13 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.