mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
93ce2b4ca5
Minimal changes required to integrate the SPL sources in to the ZFS repository build infrastructure and packaging. Build system and packaging: * Renamed SPL_* autoconf m4 macros to ZFS_*. * Removed redundant SPL_* autoconf m4 macros. * Updated the RPM spec files to remove SPL package dependency. * The zfs package obsoletes the spl package, and the zfs-kmod package obsoletes the spl-kmod package. * The zfs-kmod-devel* packages were updated to add compatibility symlinks under /usr/src/spl-x.y.z until all dependent packages can be updated. They will be removed in a future release. * Updated copy-builtin script for in-kernel builds. * Updated DKMS package to include the spl.ko. * Updated stale AUTHORS file to include all contributors. * Updated stale COPYRIGHT and included the SPL as an exception. * Renamed README.markdown to README.md * Renamed OPENSOLARIS.LICENSE to LICENSE. * Renamed DISCLAIMER to NOTICE. Required code changes: * Removed redundant HAVE_SPL macro. * Removed _BOOT from nvpairs since it doesn't apply for Linux. * Initial header cleanup (removal of empty headers, refactoring). * Remove SPL repository clone/build from zimport.sh. * Use of DEFINE_RATELIMIT_STATE and DEFINE_SPINLOCK removed due to build issues when forcing C99 compilation. * Replaced legacy ACCESS_ONCE with READ_ONCE. * Include needed headers for `current` and `EXPORT_SYMBOL`. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Olaf Faaland <faaland1@llnl.gov> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Pavel Zakharov <pavel.zakharov@delphix.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> TEST_ZIMPORT_SKIP="yes" Closes #7556
62 lines
2.4 KiB
Makefile
62 lines
2.4 KiB
Makefile
KERNEL_H = \
|
|
$(top_srcdir)/include/spl/sys/acl.h \
|
|
$(top_srcdir)/include/spl/sys/atomic.h \
|
|
$(top_srcdir)/include/spl/sys/byteorder.h \
|
|
$(top_srcdir)/include/spl/sys/callb.h \
|
|
$(top_srcdir)/include/spl/sys/callo.h \
|
|
$(top_srcdir)/include/spl/sys/cmn_err.h \
|
|
$(top_srcdir)/include/spl/sys/condvar.h \
|
|
$(top_srcdir)/include/spl/sys/console.h \
|
|
$(top_srcdir)/include/spl/sys/cred.h \
|
|
$(top_srcdir)/include/spl/sys/ctype.h \
|
|
$(top_srcdir)/include/spl/sys/debug.h \
|
|
$(top_srcdir)/include/spl/sys/disp.h \
|
|
$(top_srcdir)/include/spl/sys/dkioc_free_util.h \
|
|
$(top_srcdir)/include/spl/sys/dkio.h \
|
|
$(top_srcdir)/include/spl/sys/errno.h \
|
|
$(top_srcdir)/include/spl/sys/fcntl.h \
|
|
$(top_srcdir)/include/spl/sys/file.h \
|
|
$(top_srcdir)/include/spl/sys/inttypes.h \
|
|
$(top_srcdir)/include/spl/sys/isa_defs.h \
|
|
$(top_srcdir)/include/spl/sys/kmem_cache.h \
|
|
$(top_srcdir)/include/spl/sys/kmem.h \
|
|
$(top_srcdir)/include/spl/sys/kobj.h \
|
|
$(top_srcdir)/include/spl/sys/kstat.h \
|
|
$(top_srcdir)/include/spl/sys/list.h \
|
|
$(top_srcdir)/include/spl/sys/mode.h \
|
|
$(top_srcdir)/include/spl/sys/mutex.h \
|
|
$(top_srcdir)/include/spl/sys/param.h \
|
|
$(top_srcdir)/include/spl/sys/processor.h \
|
|
$(top_srcdir)/include/spl/sys/proc.h \
|
|
$(top_srcdir)/include/spl/sys/random.h \
|
|
$(top_srcdir)/include/spl/sys/rwlock.h \
|
|
$(top_srcdir)/include/spl/sys/shrinker.h \
|
|
$(top_srcdir)/include/spl/sys/sid.h \
|
|
$(top_srcdir)/include/spl/sys/signal.h \
|
|
$(top_srcdir)/include/spl/sys/stat.h \
|
|
$(top_srcdir)/include/spl/sys/strings.h \
|
|
$(top_srcdir)/include/spl/sys/sunddi.h \
|
|
$(top_srcdir)/include/spl/sys/sysmacros.h \
|
|
$(top_srcdir)/include/spl/sys/systeminfo.h \
|
|
$(top_srcdir)/include/spl/sys/taskq.h \
|
|
$(top_srcdir)/include/spl/sys/thread.h \
|
|
$(top_srcdir)/include/spl/sys/time.h \
|
|
$(top_srcdir)/include/spl/sys/timer.h \
|
|
$(top_srcdir)/include/spl/sys/tsd.h \
|
|
$(top_srcdir)/include/spl/sys/types32.h \
|
|
$(top_srcdir)/include/spl/sys/types.h \
|
|
$(top_srcdir)/include/spl/sys/uio.h \
|
|
$(top_srcdir)/include/spl/sys/user.h \
|
|
$(top_srcdir)/include/spl/sys/vfs.h \
|
|
$(top_srcdir)/include/spl/sys/vmem.h \
|
|
$(top_srcdir)/include/spl/sys/vmsystm.h \
|
|
$(top_srcdir)/include/spl/sys/vnode.h \
|
|
$(top_srcdir)/include/spl/sys/wait.h \
|
|
$(top_srcdir)/include/spl/sys/zmod.h \
|
|
$(top_srcdir)/include/spl/sys/zone.h
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/include/spl/sys
|
|
kernel_HEADERS = $(KERNEL_H)
|
|
endif
|