1ba4a712dd
This bring huge amount of changes, I'll enumerate only user-visible changes: - Delegated Administration Allows regular users to perform ZFS operations, like file system creation, snapshot creation, etc. - L2ARC Level 2 cache for ZFS - allows to use additional disks for cache. Huge performance improvements mostly for random read of mostly static content. - slog Allow to use additional disks for ZFS Intent Log to speed up operations like fsync(2). - vfs.zfs.super_owner Allows regular users to perform privileged operations on files stored on ZFS file systems owned by him. Very careful with this one. - chflags(2) Not all the flags are supported. This still needs work. - ZFSBoot Support to boot off of ZFS pool. Not finished, AFAIK. Submitted by: dfr - Snapshot properties - New failure modes Before if write requested failed, system paniced. Now one can select from one of three failure modes: - panic - panic on write error - wait - wait for disk to reappear - continue - serve read requests if possible, block write requests - Refquota, refreservation properties Just quota and reservation properties, but don't count space consumed by children file systems, clones and snapshots. - Sparse volumes ZVOLs that don't reserve space in the pool. - External attributes Compatible with extattr(2). - NFSv4-ACLs Not sure about the status, might not be complete yet. Submitted by: trasz - Creation-time properties - Regression tests for zpool(8) command. Obtained from: OpenSolaris
105 lines
2.3 KiB
Makefile
105 lines
2.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
KMOD= zfs
|
|
|
|
SRCS= vnode_if.h
|
|
|
|
SUNW= ${.CURDIR}/../../cddl/contrib/opensolaris
|
|
|
|
.PATH: ${SUNW}/common/acl
|
|
SRCS+= acl_common.c
|
|
.PATH: ${SUNW}/common/avl
|
|
SRCS+= avl.c
|
|
.PATH: ${SUNW}/common/nvpair
|
|
SRCS+= nvpair.c
|
|
.PATH: ${.CURDIR}/../../cddl/contrib/opensolaris/common/unicode
|
|
SRCS+= u8_textprep.c
|
|
|
|
.PATH: ${.CURDIR}/../../cddl/compat/opensolaris/kern
|
|
SRCS+= opensolaris_kmem.c
|
|
SRCS+= opensolaris_kobj.c
|
|
SRCS+= opensolaris_kstat.c
|
|
SRCS+= opensolaris_lookup.c
|
|
SRCS+= opensolaris_misc.c
|
|
SRCS+= opensolaris_policy.c
|
|
SRCS+= opensolaris_string.c
|
|
SRCS+= opensolaris_vfs.c
|
|
SRCS+= opensolaris_zone.c
|
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64"
|
|
.PATH: ${SUNW}/common/atomic/${MACHINE_ARCH}
|
|
SRCS+= atomic.S
|
|
.else
|
|
.PATH: ${.CURDIR}/../../cddl/compat/opensolaris/kern
|
|
SRCS+= opensolaris_atomic.c
|
|
.endif
|
|
|
|
.PATH: ${SUNW}/uts/common/fs
|
|
SRCS+= gfs.c
|
|
SRCS+= vnode.c
|
|
|
|
.PATH: ${SUNW}/uts/common/os
|
|
SRCS+= callb.c
|
|
SRCS+= list.c
|
|
SRCS+= nvpair_alloc_system.c
|
|
SRCS+= taskq.c
|
|
|
|
.PATH: ${SUNW}/uts/common/rpc
|
|
SRCS+= xdr.c
|
|
SRCS+= xdr_array.c
|
|
SRCS+= xdr_mem.c
|
|
|
|
.PATH: ${SUNW}/uts/common/zmod
|
|
SRCS+= adler32.c
|
|
SRCS+= crc32.c
|
|
SRCS+= deflate.c
|
|
SRCS+= inffast.c
|
|
SRCS+= inflate.c
|
|
SRCS+= inftrees.c
|
|
SRCS+= trees.c
|
|
SRCS+= zmod.c
|
|
SRCS+= zmod_subr.c
|
|
SRCS+= zutil.c
|
|
|
|
.PATH: ${SUNW}/common/zfs
|
|
.include "${SUNW}/uts/common/Makefile.files"
|
|
.PATH: ${SUNW}/uts/common/fs/zfs
|
|
ZFS_SRCS= ${ZFS_OBJS:C/.o$/.c/}
|
|
SRCS+= ${ZFS_SRCS}
|
|
SRCS+= vdev_geom.c
|
|
|
|
# Use UMA for ZIO allocation. This is not stable.
|
|
#CFLAGS+=-DZIO_USE_UMA
|
|
|
|
# Use FreeBSD's namecache.
|
|
CFLAGS+=-DFREEBSD_NAMECACHE
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../cddl/compat/opensolaris
|
|
CFLAGS+=-I${SUNW}/uts/common/fs/zfs
|
|
CFLAGS+=-I${SUNW}/uts/common/zmod
|
|
CFLAGS+=-I${SUNW}/uts/common
|
|
CFLAGS+=-I${.CURDIR}/../..
|
|
CFLAGS+=-I${SUNW}/common/zfs
|
|
CFLAGS+=-I${SUNW}/common
|
|
CFLAGS+=-I${.CURDIR}/../../../include
|
|
CFLAGS+=-DBUILDING_ZFS
|
|
|
|
#CFLAGS+=-DDEBUG=1
|
|
#DEBUG_FLAGS=-g
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CWARNFLAGS+=-Wno-unknown-pragmas
|
|
CWARNFLAGS+=-Wno-missing-prototypes
|
|
CWARNFLAGS+=-Wno-undef
|
|
CWARNFLAGS+=-Wno-strict-prototypes
|
|
CWARNFLAGS+=-Wno-cast-qual
|
|
CWARNFLAGS+=-Wno-parentheses
|
|
CWARNFLAGS+=-Wno-redundant-decls
|
|
CWARNFLAGS+=-Wno-missing-braces
|
|
CWARNFLAGS+=-Wno-uninitialized
|
|
CWARNFLAGS+=-Wno-unused
|
|
CWARNFLAGS+=-Wno-inline
|
|
CWARNFLAGS+=-Wno-switch
|
|
CWARNFLAGS+=-Wno-pointer-arith
|