2007-04-06 01:09:06 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2008-03-27 23:21:25 +00:00
|
|
|
.include "${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/Makefile.files"
|
2007-04-06 01:09:06 +00:00
|
|
|
|
|
|
|
# ZFS_COMMON_SRCS
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs
|
2007-04-06 01:09:06 +00:00
|
|
|
# ZFS_SHARED_SRCS
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/zfs
|
2007-04-06 01:09:06 +00:00
|
|
|
# KERNEL_SRCS
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libzpool/common
|
2007-04-06 01:09:06 +00:00
|
|
|
# LIST_SRCS
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/os
|
2007-04-06 01:09:06 +00:00
|
|
|
# ATOMIC_SRCS
|
2010-08-23 22:04:30 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "powerpc64"
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/atomic/${MACHINE_ARCH}
|
2009-05-09 05:39:35 +00:00
|
|
|
ATOMIC_SRCS= opensolaris_atomic.S
|
2007-06-08 12:35:47 +00:00
|
|
|
.else
|
2008-03-27 23:21:25 +00:00
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/compat/opensolaris/kern
|
2007-06-08 12:35:47 +00:00
|
|
|
ATOMIC_SRCS= opensolaris_atomic.c
|
|
|
|
.endif
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
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
2008-11-17 20:49:29 +00:00
|
|
|
# UNICODE_SRCS
|
|
|
|
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/unicode
|
2007-04-16 21:20:26 +00:00
|
|
|
|
|
|
|
LIB= zpool
|
|
|
|
|
|
|
|
ZFS_COMMON_SRCS= ${ZFS_COMMON_OBJS:C/.o$/.c/} vdev_file.c
|
|
|
|
ZFS_SHARED_SRCS= ${ZFS_SHARED_OBJS:C/.o$/.c/}
|
|
|
|
KERNEL_SRCS= kernel.c taskq.c util.c
|
|
|
|
LIST_SRCS= list.c
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
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
2008-11-17 20:49:29 +00:00
|
|
|
UNICODE_SRCS= u8_textprep.c
|
2007-04-16 21:20:26 +00:00
|
|
|
|
|
|
|
SRCS= ${ZFS_COMMON_SRCS} ${ZFS_SHARED_SRCS} \
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
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
2008-11-17 20:49:29 +00:00
|
|
|
${KERNEL_SRCS} ${LIST_SRCS} ${ATOMIC_SRCS} \
|
|
|
|
${UNICODE_SRCS}
|
|
|
|
|
2010-03-02 19:04:07 +00:00
|
|
|
WARNS?= 0
|
2008-03-27 23:21:25 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/include
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/lib/libumem
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libzpool/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/sys
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/zfs
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/head
|
2007-04-16 21:20:26 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/lib/libumem
|
2008-03-27 23:21:25 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libnvpair
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
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
2008-11-17 20:49:29 +00:00
|
|
|
# XXX: pthread doesn't have mutex_owned() equivalent, so we need to look
|
|
|
|
# into libthr private structures. That's sooo evil, but it's only for
|
|
|
|
# ZFS debugging tools needs.
|
|
|
|
CFLAGS+= -DWANTS_MUTEX_OWNED
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../lib/libpthread/thread
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../lib/libpthread/sys
|
2010-08-23 22:24:11 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../../lib/libthr/arch/${MACHINE_CPUARCH}/include
|
2007-04-16 21:20:26 +00:00
|
|
|
|
2007-04-17 15:52:37 +00:00
|
|
|
DPADD= ${LIBPTHREAD} ${LIBZ}
|
|
|
|
LDADD= -lpthread -lz
|
2007-04-06 01:09:06 +00:00
|
|
|
|
|
|
|
# atomic.S doesn't like profiling.
|
|
|
|
NO_PROFILE=
|
|
|
|
|
2009-03-14 17:55:16 +00:00
|
|
|
CSTD= c99
|
|
|
|
|
2007-04-06 01:09:06 +00:00
|
|
|
.include <bsd.lib.mk>
|