/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Deimos - cryptographic acceleration based upon Broadcom 582x.
*/
/*
* Kernel statistics.
*/
static int dca_ksupdate(kstat_t *, int);
/*
* Initialize Kstats.
*/
void
{
int instance;
/*
* sysadmin has explicity disabled stats to prevent
* covert channel.
*/
return;
}
/*
* Interrupt kstats.
*/
} else {
}
/*
* Named kstats.
*/
KSTAT_FLAG_WRITABLE)) == NULL) {
} else {
#ifdef DS_RC4JOBS
/* rc4 */
#endif
#ifdef DS_RC4BYTES
#endif
/* 3des */
/* rsa */
/* dsa */
#ifdef DS_DHPUBLIC
/* diffie-hellman */
#endif
#ifdef DS_DHSECRET
#endif
/* random number jobs */
"rngsha1bytes", KSTAT_DATA_ULONGLONG);
}
}
/*
* Update Kstats.
*/
int
{
int i;
if (rw == KSTAT_WRITE) {
for (i = 0; i < DS_MAX; i++) {
}
/* hiwater, lowater, and maxreqs are read only */
}
} else {
/* handy status value */
/* device has failed */
/* device is draining for DR */
} else {
/* everything looks good */
}
for (i = 0; i < DS_MAX; i++) {
}
}
}
return (0);
}