History log of /src/sys/lib/libkern/crc32.c |
Revision | | Date | Author | Comments |
1.4 |
| 26-Mar-2009 |
he | branches: 1.4.2; 1.4.4; 1.4.6; 1.4.8; 1.4.14; Make the function declaration the same for the big-endian case as for the little-endian case, and consistent with the libkern.h declaration. Fixes build problem for at least hp700 and evbbarm-eb.
|
1.3 |
| 25-Mar-2009 |
tls | Fix compilation error on 64-bit platforms.
|
1.2 |
| 25-Mar-2009 |
tls | Fix build problems caused by crc32 addition to libkern. Also, this makes the i386 bootblocks about 2K smaller than they were before we monkeyed with crc32 at all.
|
1.1 |
| 25-Mar-2009 |
darran | Fixes PR kern/41069 and PR kern/41070.
Extends the Opencrypto API to allow the destination buffer size to be specified when its not the same size as the input buffer (i.e. for operations like compress and decompress). The crypto_op and crypt_n_op structures gain a u_int dst_len field. The session_op structure gains a comp_alg field to specify a compression algorithm. Moved four ioctls to new ids; CIOCGSESSION, CIOCNGSESSION, CIOCCRYPT, and CIOCNCRYPTM. Added four backward compatible ioctls; OCIOCGSESSION, OCIOCNGSESSION, OCIOCCRYPT, and OCIOCNCRYPTM.
Backward compatibility is maintained in ocryptodev.h and ocryptodev.c which implement the original ioctls and set dst_len and comp_alg to 0.
Adds user-space access to compression features.
Adds software gzip support (CRYPTO_GZIP_COMP).
Adds the fast version of crc32 from zlib to libkern. This should be generally useful and provide a place to start normalizing the various crc32 routines in the kernel. The crc32 routine is used in this patch to support GZIP.
With input and support from tls@NetBSD.org.
|
1.4.14.2 |
| 21-Apr-2010 |
matt | sync to netbsd-5
|
1.4.14.1 |
| 26-Mar-2009 |
matt | file crc32.c was added on branch matt-nb5-mips64 on 2010-04-21 00:28:20 +0000
|
1.4.8.3 |
| 16-May-2009 |
jym | Fix a merge botch that hampered kernel's build for amd64.
Reported by cegger@ in private mail. Thanks.
|
1.4.8.2 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.4.8.1 |
| 26-Mar-2009 |
jym | file crc32.c was added on branch jym-xensuspend on 2009-05-13 17:22:15 +0000
|
1.4.6.2 |
| 04-May-2009 |
yamt | sync with head.
|
1.4.6.1 |
| 26-Mar-2009 |
yamt | file crc32.c was added on branch yamt-nfs-mp on 2009-05-04 08:13:50 +0000
|
1.4.4.5 |
| 03-May-2009 |
snj | Pull up following revision(s) (requested by tls in ticket #611): sys/lib/libkern/crc32.c: revision 1.4 Make the function declaration the same for the big-endian case as for the little-endian case, and consistent with the libkern.h declaration. Fixes build problem for at least hp700 and evbbarm-eb.
|
1.4.4.4 |
| 03-May-2009 |
snj | Pull up following revision(s) (requested by tls in ticket #611): sys/lib/libkern/crc32.c: revision 1.3 Fix compilation error on 64-bit platforms.
|
1.4.4.3 |
| 03-May-2009 |
snj | Pull up following revision(s) (requested by tls in ticket #611): common/dist/zlib/zlib.h: revision 1.3 sys/lib/libkern/crc32.c: revision 1.2 sys/lib/libkern/libkern.h: revision 1.90 via patch sys/lib/libsa/cread.c: revision 1.23 sys/lib/libz/Makefile: revision 1.16 Fix build problems caused by crc32 addition to libkern. Also, this makes the i386 bootblocks about 2K smaller than they were before we monkeyed with crc32 at all.
|
1.4.4.2 |
| 03-May-2009 |
snj | Pull up following revision(s) (requested by tls in ticket #611): sys/lib/libkern/Makefile: patch sys/lib/libkern/crc32.c: revision 1.1 sys/lib/libkern/crc32.h: revision 1.1 sys/lib/libkern/libkern.h: revision 1.89 sys/lib/libkern/arch/i386/Makefile.inc: revision 1.28 sys/net/zlib.h: revision 1.14 via patch sys/opencrypto/crypto.c: revision 1.33 sys/opencrypto/cryptodev.c: revision 1.46 sys/opencrypto/cryptodev.h: revision 1.16 sys/opencrypto/cryptosoft.c: revision 1.24 sys/opencrypto/cryptosoft.h: revision 1.6 sys/opencrypto/deflate.h: revision 1.6 sys/opencrypto/cryptosoft_xform.c: revision 1.12 sys/opencrypto/deflate.c: revision 1.13 sys/opencrypto/files.opencrypto: revision 1.20 sys/opencrypto/ocryptodev.c: revision 1.1 sys/opencrypto/ocryptodev.h: revision 1.1 sys/opencrypto/xform.c: revision 1.18 sys/opencrypto/xform.h: revision 1.10 Fixes PR kern/41069 and PR kern/41070.
Extends the Opencrypto API to allow the destination buffer size to be specified when its not the same size as the input buffer (i.e. for operations like compress and decompress). The crypto_op and crypt_n_op structures gain a u_int dst_len field. The session_op structure gains a comp_alg field to specify a compression algorithm. Moved four ioctls to new ids; CIOCGSESSION, CIOCNGSESSION, CIOCCRYPT, and CIOCNCRYPTM. Added four backward compatible ioctls; OCIOCGSESSION, OCIOCNGSESSION, OCIOCCRYPT, and OCIOCNCRYPTM.
Backward compatibility is maintained in ocryptodev.h and ocryptodev.c which implement the original ioctls and set dst_len and comp_alg to 0.
Adds user-space access to compression features.
Adds software gzip support (CRYPTO_GZIP_COMP).
Adds the fast version of crc32 from zlib to libkern. This should be generally useful and provide a place to start normalizing the various crc32 routines in the kernel. The crc32 routine is used in this patch to support GZIP.
With input and support from tls@NetBSD.org.
|
1.4.4.1 |
| 26-Mar-2009 |
snj | file crc32.c was added on branch netbsd-5 on 2009-05-03 17:24:45 +0000
|
1.4.2.2 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
1.4.2.1 |
| 26-Mar-2009 |
skrll | file crc32.c was added on branch nick-hppapmap on 2009-04-28 07:37:13 +0000
|