History log of /openbsd-current/sys/crypto/criov.c
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: OPENBSD_5_8_BASE OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE OPENBSD_6_2_BASE
# 1.20 14-Mar-2015 jsg

Remove some includes include-what-you-use claims don't
have any direct symbols used. Tested for indirect use by compiling
amd64/i386/sparc64 kernels.

ok tedu@ deraadt@


Revision tags: OPENBSD_5_7_BASE
# 1.19 14-Sep-2014 jsg

remove uneeded proc.h includes
ok mpi@ kspillner@


Revision tags: OPENBSD_5_6_BASE
# 1.18 13-Jul-2014 deraadt

do not need malloc.h


# 1.17 08-Jul-2014 deraadt

decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h
don't need to be married.
ok guenther miod beck jsing kettenis


Revision tags: OPENBSD_4_1_BASE OPENBSD_4_2_BASE OPENBSD_4_3_BASE OPENBSD_4_4_BASE OPENBSD_4_5_BASE OPENBSD_4_6_BASE OPENBSD_4_7_BASE OPENBSD_4_8_BASE OPENBSD_4_9_BASE OPENBSD_5_0_BASE OPENBSD_5_1_BASE OPENBSD_5_2_BASE OPENBSD_5_3_BASE OPENBSD_5_4_BASE OPENBSD_5_5_BASE
# 1.16 29-Dec-2006 pedro

Avoid void * arithmetic, okay deraadt@, suggestions from millert@


# 1.15 19-Nov-2006 jmc

typo; from bret lambert
ok pedro


Revision tags: OPENBSD_3_4_BASE OPENBSD_3_5_BASE OPENBSD_3_6_BASE OPENBSD_3_7_BASE OPENBSD_3_8_BASE OPENBSD_3_9_BASE OPENBSD_4_0_BASE SMP_SYNC_A SMP_SYNC_B
# 1.14 14-Aug-2003 jason

mirror change in mbufs: cuio_copyback's 4th arg is now const void *


# 1.13 31-Jul-2003 markus

pasto; lha@stacken.kth.se


# 1.12 03-Jun-2003 deraadt

license cleanup regarding term 4


Revision tags: OPENBSD_3_2_BASE OPENBSD_3_3_BASE UBC_SYNC_A UBC_SYNC_B
# 1.11 10-Jun-2002 espie

__FUNCTION__ -> __func__


Revision tags: OPENBSD_3_1_BASE
# 1.10 01-Mar-2002 provos

helper functions for uio (cuio_apply and cuio_getptr) okay deraadt@


# 1.9 29-Jan-2002 jason

Remove the iov2pages/mbuf2pages API... All of the relevant arch's support
bus_dma(9) which actually does this job correctly.


Revision tags: UBC_BASE
# 1.8 06-Nov-2001 miod

branches: 1.8.2;
Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)


Revision tags: OPENBSD_3_0_BASE
# 1.7 12-Aug-2001 mickey

remove redundant vm includes


# 1.6 23-Jun-2001 deraadt

branches: 1.6.2;
merge crypto/crypto{dev,}.h to crypto/cryptodev.h, to avoid name conflicts inside OpenSSL codebase


# 1.5 18-Jun-2001 deraadt

oops, backwards check


# 1.4 18-Jun-2001 deraadt

incorrect panic message


# 1.3 08-Jun-2001 art

Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface to
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *).
Matches NetBSD. Tested by various people on various platforms.


# 1.2 14-May-2001 deraadt

use real uio


# 1.1 13-May-2001 deraadt

initial cut at /dev/crypto support. takes original mbuf "try, and discard
if we fail" semantics and extends to two varients of data movement: mbuf,
or an iovec style block.