summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2022-05-03 09:18:12 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2022-05-03 09:18:12 +0000
commita6578de137488f0546a172277adacf52661b4263 (patch)
treed2ba61dd0129c85cac293685a81620da173dd43c /sys/crypto
parent3ebcd378fb03df181f598e4bd4c0f8d87ccfc96c (diff)
Retire CRYPTO_F_MPSAFE it is no longer of any use. The crypto framework
no longer uses a callback and so there is no need to define the callback as MPSAFE. OK bluhm@
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/cryptodev.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h
index 9f353aa86b6..c04845dadfd 100644
--- a/sys/crypto/cryptodev.h
+++ b/sys/crypto/cryptodev.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptodev.h,v 1.81 2021/10/24 14:50:42 tobhe Exp $ */
+/* $OpenBSD: cryptodev.h,v 1.82 2022/05/03 09:18:11 claudio Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
@@ -158,7 +158,6 @@ struct cryptop {
#define CRYPTO_F_IMBUF 0x0001 /* Input/output are mbuf chains, otherwise contig */
#define CRYPTO_F_IOV 0x0002 /* Input/output are uio */
-#define CRYPTO_F_MPSAFE 0x0004 /* Do not use kernel lock for callback */
void *crp_buf; /* Data to be processed */