Trying to upgrade zlib in kernel

Yoshihiro Ota ota at j.email.ne.jp
Tue Mar 26 04:10:24 UTC 2019


Hello,

Our zlib in kernel has been quite out-dated.
I looked in and started updating.

I use contrib/zlib files and sys/contrib/zstd to compile zlib with least amount of changes to zlib side.
I split crc32 functions and also added few compile options to distinguish zlib calls.
I have to relocate current one as netgraph uses FreeBSD specific implementation.

I started wondering if I should move contrib/zlib to sys/contrib/zlib and wanted to get some feed back on some of coding policies.

I created https://reviews.freebsd.org/D19706, and noted in new sys/sys/zlib.h:
/*
* #1 - sys/crc32.h is split out of sys/libkern.h to avoid conflicts
*      between zlib's crc32 and system crc32.
* #2 - Use contrib/zstd/lib/freebsd's stdlib compatible includes.
* #3 - ZLIB_C is created con/kern.pre.mk to share compile paths.
*        -I contrib/zlib
*        -I sys/contrib/zstd/lib/freebsd
* #4 - sys/zlib.h defines these.
*        Z_PREIFX
*        NO_GZIP
*        Z_SOLO - this is for libkern/zlib.c and not needed for clients of zlib.
* #5 - opencryptodeflate.c
*        zfs.state->dummy is an address and doesn't seem to be useful.
*      Its DTRACE probe is removed.
* #6 - netgraph/deflate.c needs and uses FreeBSD enhancements to zlib.
*        Moved sys/zlib.h to netgraph/zlib.h, sys/libkern/zlib.c to
*      netgraph/zlib.c, and netgraph/deflate.c includes netgraph/zlib.c
*      to compile as a part of deflate.c.
*/

Regards,
Hiro


More information about the freebsd-arch mailing list