mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
e53d678d4a
The zfs_fsync, zfs_read, and zfs_write function are almost identical between Linux and FreeBSD. With a little refactoring they can be moved to the common code which is what is done by this commit. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #11078
32 lines
521 B
Makefile
32 lines
521 B
Makefile
KERNEL_H = \
|
|
policy.h \
|
|
sha2.h \
|
|
trace_acl.h \
|
|
trace_arc.h \
|
|
trace_common.h \
|
|
trace_zfs.h \
|
|
trace_dbgmsg.h \
|
|
trace_dbuf.h \
|
|
trace_dmu.h \
|
|
trace_dnode.h \
|
|
trace_multilist.h \
|
|
trace_rrwlock.h \
|
|
trace_txg.h \
|
|
trace_vdev.h \
|
|
trace_zil.h \
|
|
trace_zio.h \
|
|
trace_zrlock.h \
|
|
zfs_bootenv_os.h \
|
|
zfs_context_os.h \
|
|
zfs_ctldir.h \
|
|
zfs_dir.h \
|
|
zfs_vfsops_os.h \
|
|
zfs_vnops_os.h \
|
|
zfs_znode_impl.h \
|
|
zpl.h
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/include/sys
|
|
kernel_HEADERS = $(KERNEL_H)
|
|
endif
|