mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Notable upstream pull request merges:
#12438 Avoid panic with recordsize > 128k, raw sending and no large_blocks
#13015 Fix dnode byteswapping
#13256 Add a "zstream decompress" subcommand
#13555 Scrub mirror children without BPs
#13576 Several sorted scrub optimizations
#13579 Fix and disable blocks statistics during scrub
#13582 Several B-tree optimizations
#13591 Avoid two 64-bit divisions per scanned block
#13606 Avoid memory copies during mirror scrub
#13613 Avoid memory copy when verifying raidz/draid parity
Obtained from: OpenZFS
OpenZFS commit: cb01da6805
36 lines
792 B
Makefile
36 lines
792 B
Makefile
# $FreeBSD$
|
|
|
|
ZFSTOP= ${SRCTOP}/sys/contrib/openzfs
|
|
|
|
.PATH: ${ZFSTOP}/cmd/zstream
|
|
.PATH: ${ZFSTOP}/man/man8
|
|
|
|
PROG= zstream
|
|
MAN= zstream.8
|
|
MLINKS= zstream.8 zstreamdump.8
|
|
INCS= zstream.h
|
|
SRCS= \
|
|
zstream.c \
|
|
zstream_decompress.c \
|
|
zstream_dump.c \
|
|
zstream_redup.c \
|
|
zstream_token.c
|
|
|
|
SYMLINKS= ${BINDIR}/zstream ${BINDIR}/zstreamdump
|
|
|
|
WARNS?= 2
|
|
CFLAGS+= \
|
|
-DIN_BASE \
|
|
-I${ZFSTOP}/include \
|
|
-I${ZFSTOP}/lib/libspl/include \
|
|
-I${ZFSTOP}/lib/libspl/include/os/freebsd \
|
|
-I${SRCTOP}/sys \
|
|
-I${SRCTOP}/cddl/compat/opensolaris/include \
|
|
-I${ZFSTOP}/module/icp/include \
|
|
-include ${ZFSTOP}/include/os/freebsd/spl/sys/ccompile.h \
|
|
-DHAVE_ISSETUGID \
|
|
-include ${SRCTOP}/sys/modules/zfs/zfs_config.h
|
|
|
|
LIBADD= geom m nvpair umem uutil avl spl zfs_core zfs zutil zpool
|
|
|
|
.include <bsd.prog.mk>
|