aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/zfs
Commit message (Collapse)AuthorAgeFilesLines
* fix xdrmem_control to be safe in an if statementKip Macy2009-05-301-5/+0
| | | | | | | | | | fix zfs to depend on krpc remove xdr from zfs makefile Submitted by: dchagin@freebsd.org Notes: svn path=/head/; revision=193128
* MFdevbranch 192944Kip Macy2009-05-281-4/+4
| | | | | | | | | - add FreeBSD implementation of xdrmem_control needed by zfs - have zfs define xdr_ops using FreeBSD's definition - remove solaris xdr files from zfs compile Notes: svn path=/head/; revision=192971
* MFp4 changes neccessary for NFSv4 ACLs support in ZFS. This is mostlyEdward Tomasz Napierala2009-05-261-0/+1
| | | | | | | | | | | | | | about removing a few #ifdefs and providing compatibility wrappers and VOP implementations to get and set an ACL; ZFS does ACL enforcement all by itself. Note that the VOPs are ifdefed out for now, so this change should be a no-op. Reviewed by: pjd Notes: svn path=/head/; revision=192800
* rename xdr support files to avoid conflicts when linking in to the kernelKip Macy2009-05-111-3/+3
| | | | Notes: svn path=/head/; revision=191984
* fix atomic.S rename and vimage breakageKip Macy2009-05-091-1/+0
| | | | | | | The latter was pointed out by Artem Belevich Notes: svn path=/head/; revision=191934
* - rename atomic.S and crc32.c to avoid collisions when linking zfs in to the ↵Kip Macy2009-05-091-2/+2
| | | | | | | | | | kernel - update Makefile - ifdef out acl_{alloc, free}, they aren't used by zfs and conflict with existing in-kernel routines Notes: svn path=/head/; revision=191931
* Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.Pawel Jakub Dawidek2008-11-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=185029
* Merge latest DTrace changes from Perforce.Craig Rodrigues2008-11-051-0/+1
| | | | | | | Approved by: jb Notes: svn path=/head/; revision=184700
* Add atomic operations for ZFS/sparc64.Marius Strobl2008-04-111-1/+1
| | | | | | | | | Approved by: core, pjd Obtained from: OpenSolaris (w/ adaptations) MFC after: 2 weeks Notes: svn path=/head/; revision=178129
* The sources covered by Sun's CDDL have been repo copied below theJohn Birrell2008-03-271-4/+4
| | | | | | | | | | | src/cddl and src/sys/cddl directories per the core@ decision following the license review. This change modifies the affected Makefiles to reference the sources in their new location. Notes: svn path=/head/; revision=177674
* "root" the include path so there is less duplication.David E. O'Brien2008-03-081-16/+18
| | | | Notes: svn path=/head/; revision=176952
* Remove WARNS from here and compile with default kernel flags.Ruslan Ermilov2008-02-211-10/+14
| | | | | | | Switch off those warnings that ZFS sources do not pass. Notes: svn path=/head/; revision=176436
* Remove _SOLARIS_C_SOURCE now that it doesn't do anything in FreeBSDJohn Birrell2007-11-281-2/+0
| | | | | | | | | headers. All OpenSolaris compatibility comes via the set of specific compatibility headers in src/compat/opensolaris and src/sys/compat/opensolaris. Notes: svn path=/head/; revision=174059
* - Reduce number of atomic operations needed to be implemented in asm byPawel Jakub Dawidek2007-06-081-0/+5
| | | | | | | | | | implementing some of them using existing ones. - Allow to compile ZFS on all archs and use atomic operations surrounded by global mutex on archs we don't have or can't have all atomic operations needed by ZFS. Notes: svn path=/head/; revision=170431
* FreeBSD's namecache works quite well with ZFS, so remove DNLC.Pawel Jakub Dawidek2007-05-231-1/+0
| | | | Notes: svn path=/head/; revision=169920
* MFp4: Now that ZFS can use FreeBSD's namecache, turn it off by default andPawel Jakub Dawidek2007-04-241-0/+3
| | | | | | | turn off DNLC, but don't remove DNLC yet just in case. Notes: svn path=/head/; revision=169027
* MFp4: Synchronize with recent OpenSolaris changes.Pawel Jakub Dawidek2007-04-081-0/+1
| | | | Notes: svn path=/head/; revision=168498
* Move atomic.S files to directories that better fit OpenSolaris directoryPawel Jakub Dawidek2007-04-071-1/+1
| | | | | | | layout. Notes: svn path=/head/; revision=168482
* Add Makefile for zfs.ko kernel module.Pawel Jakub Dawidek2007-04-061-0/+87
Notes: svn path=/head/; revision=168406