mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
e58dee8cae
When an invalid incremental send is requested where the "to" ds is before the "from" ds, make sure to drop the reference to the pool and the dataset before returning the error. Add an assert on FreeBSD to make sure we don't hold any locks after returning from an ioctl. Add some test coverage. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #10919
12 lines
308 B
Makefile
12 lines
308 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/bin
|
|
|
|
pkgexec_PROGRAMS = badsend
|
|
|
|
badsend_SOURCES = badsend.c
|
|
badsend_LDADD = \
|
|
$(abs_top_builddir)/lib/libzfs_core/libzfs_core.la \
|
|
$(abs_top_builddir)/lib/libzfs/libzfs.la \
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|