Page MenuHomeFreeBSD

crypto(9): Remove some unnecessary error handling.
ClosedPublic

Authored by markj on Jul 16 2020, 8:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Nov 15 2024, 3:30 AM
Unknown Object (File)
Oct 30 2024, 4:12 PM
Unknown Object (File)
Oct 21 2024, 11:35 PM
Unknown Object (File)
Oct 4 2024, 3:51 AM
Unknown Object (File)
Sep 30 2024, 9:27 PM
Unknown Object (File)
Sep 23 2024, 11:29 PM
Unknown Object (File)
Sep 22 2024, 8:09 AM
Unknown Object (File)
Sep 22 2024, 6:38 AM
Subscribers

Details

Summary

crypto_init() is called from a module load handler and is thus allowed
to sleep. So:

  • uma_zcreate() doesn't fail, so stop handling failures
  • stop handling M_WAITOK allocation failures
  • convert M_NOWAIT allocations in crypto_init() to M_WAITOK
  • fix some style bugs in crypto_init()

Diff Detail

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

Event Timeline

markj requested review of this revision.Jul 16 2020, 8:43 PM
markj created this revision.
delphij added inline comments.
sys/opencrypto/crypto.c
328 ↗(On Diff #74545)

[OPTIONAL] This should probably go in a different changeset, but I'm fine if it's left as-is too.

This revision is now accepted and ready to land.Jul 16 2020, 9:06 PM
jhb added inline comments.
sys/opencrypto/cryptodev.c
1318 ↗(On Diff #74545)

This one isn't crypto_init(), so I would perhaps commit it separately?

sys/opencrypto/crypto.c
328 ↗(On Diff #74545)

Since the whole thing is trivial cleanup, I tend to prefer just a single commit.

sys/opencrypto/cryptodev.c
1318 ↗(On Diff #74545)

Ok. This bit actually comes from PR 240545.

This revision was automatically updated to reflect the committed changes.