From: mvs Date: Fri, 9 Jul 2021 20:43:28 +0000 (+0000) Subject: Remove unused `cc_koperations' and `cc_queued' members from 'cryptocap' X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=794ac736bcc59f9180a8597e2440429b8df5328a;p=openbsd Remove unused `cc_koperations' and `cc_queued' members from 'cryptocap' struct. ok bluhm@ --- 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