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)
Fri, Jul 4, 9:57 AM
Unknown Object (File)
Fri, Jul 4, 8:50 AM
Unknown Object (File)
Tue, Jul 1, 11:06 PM
Unknown Object (File)
Mon, Jun 30, 11:06 AM
Unknown Object (File)
Mon, Jun 23, 9:45 AM
Unknown Object (File)
Wed, Jun 18, 8:44 AM
Unknown Object (File)
Sun, Jun 15, 9:16 AM
Unknown Object (File)
May 29 2025, 4:52 PM
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

Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 32372
Build 29853: arc lint + arc unit

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

[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

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

sys/opencrypto/crypto.c
328

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

sys/opencrypto/cryptodev.c
1318

Ok. This bit actually comes from PR 240545.

This revision was automatically updated to reflect the committed changes.