summaryrefslogtreecommitdiffstats
path: root/sys/opencrypto/crypto.c
diff options
context:
space:
mode:
authorsam <sam@FreeBSD.org>2003-06-30 05:09:32 +0000
committersam <sam@FreeBSD.org>2003-06-30 05:09:32 +0000
commite6dfb3860abe2078a8f73134b2a74981de357e28 (patch)
tree5f6e66583ac67766f3158c80d1f5db5a2c905add /sys/opencrypto/crypto.c
parent3764707074b08f5916418458d97a4853a7738e21 (diff)
downloadFreeBSD-src-e6dfb3860abe2078a8f73134b2a74981de357e28.zip
FreeBSD-src-e6dfb3860abe2078a8f73134b2a74981de357e28.tar.gz
consolidate callback optimization check in one location by adding a flag
for crypto operations that indicates the crypto code should do the check in crypto_done MFC after: 1 day
Diffstat (limited to 'sys/opencrypto/crypto.c')
-rw-r--r--sys/opencrypto/crypto.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/opencrypto/crypto.c b/sys/opencrypto/crypto.c
index e2683dc..3bb53bc 100644
--- a/sys/opencrypto/crypto.c
+++ b/sys/opencrypto/crypto.c
@@ -950,7 +950,16 @@ crypto_done(struct cryptop *crp)
if (crypto_timing)
crypto_tstat(&cryptostats.cs_done, &crp->crp_tstamp);
#endif
- if (crp->crp_flags & CRYPTO_F_CBIMM) {
+ /*
+ * CBIMM means unconditionally do the callback immediately;
+ * CBIFSYNC means do the callback immediately only if the
+ * operation was done synchronously. Both are used to avoid
+ * doing extraneous context switches; the latter is mostly
+ * used with the software crypto driver.
+ */
+ if ((crp->crp_flags & CRYPTO_F_CBIMM) ||
+ ((crp->crp_flags & CRYPTO_F_CBIFSYNC) &&
+ (CRYPTO_SESID2CAPS(crp->crp_sid) & CRYPTOCAP_F_SYNC))) {
/*
* Do the callback directly. This is ok when the
* callback routine does very little (e.g. the
OpenPOWER on IntegriCloud