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, Sep 6, 2:00 PM
Unknown Object (File)
Sun, Sep 6, 3:39 AM
Unknown Object (File)
Sun, Sep 6, 2:30 AM
Unknown Object (File)
Sat, Sep 5, 3:48 AM
Unknown Object (File)
Fri, Sep 4, 10:15 PM
Unknown Object (File)
Fri, Sep 4, 2:57 PM
Unknown Object (File)
Fri, Sep 4, 9:40 AM
Unknown Object (File)
Wed, Sep 2, 10:03 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.