summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvs <mvs@cvs.openbsd.org>2021-07-09 20:43:29 +0000
committermvs <mvs@cvs.openbsd.org>2021-07-09 20:43:29 +0000
commit9504d0d36d0fa977c3318588854aa9e83919eec6 (patch)
treea839dd853948ae348f3467df768aad2e580169a9
parent34b9f087446136084d0424ff7b80089e096c26bb (diff)
Remove unused `cc_koperations' and `cc_queued' members from 'cryptocap'
struct. ok bluhm@
-rw-r--r--sys/crypto/cryptodev.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h
index 23e365becd5..42ef0c58e8c 100644
--- a/sys/crypto/cryptodev.h
+++ b/sys/crypto/cryptodev.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptodev.h,v 1.72 2021/06/30 12:21:02 bluhm Exp $ */
+/* $OpenBSD: cryptodev.h,v 1.73 2021/07/09 20:43:28 mvs Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
@@ -197,15 +197,12 @@ struct cryptop {
struct cryptocap {
u_int64_t cc_operations; /* Counter of how many ops done */
u_int64_t cc_bytes; /* Counter of how many bytes done */
- u_int64_t cc_koperations; /* How many PK ops done */
u_int32_t cc_sessions; /* How many sessions allocated */
/* Symmetric/hash algorithms supported */
int cc_alg[CRYPTO_ALGORITHM_MAX + 1];
- int cc_queued; /* Operations queued */
-
u_int8_t cc_flags;
#define CRYPTOCAP_F_CLEANUP 0x01
#define CRYPTOCAP_F_SOFTWARE 0x02