| Commit message (Expand) | Author | Age | Files | Lines |
* | - Add sysctl for sizeof(znode_t), which will be used by fstat(1). | Ulf Lilleengen | 2007-11-02 | 1 | -0/+4 |
* | Call zil_commit() (if ZIL is not disabled) after every non-read request | Pawel Jakub Dawidek | 2007-11-01 | 1 | -11/+11 |
* | - Move crfree() outside MNT_ILOCK()/MNT_IUNLOCK() to eliminate a LOR: | Pawel Jakub Dawidek | 2007-11-01 | 1 | -2/+6 |
* | Rename the kthread_xxx (e.g. kthread_create()) calls | Julian Elischer | 2007-10-20 | 3 | -6/+6 |
* | ZFS_LOG adds a newline by itself. | Andrew Thompson | 2007-10-14 | 1 | -1/+1 |
* | Print the ZFS ereport to the console if vfs.zfs.debug is set to help diagnose | Andrew Thompson | 2007-10-14 | 1 | -0/+1 |
* | Fix lock leak leading to the 'System call <name> returning with 1 locks held' | Pawel Jakub Dawidek | 2007-10-04 | 1 | -0/+2 |
* | Now that we have CDDLed code in the tree, add CDDL license. | Pawel Jakub Dawidek | 2007-09-23 | 1 | -0/+384 |
* | Reduce the limit of vnodes on i386 when ZFS is loaded to 3/4 of the original | Pawel Jakub Dawidek | 2007-09-10 | 1 | -0/+41 |
* | After dfr@ vnode leak fix, we can allow ARC to consume more memory. | Pawel Jakub Dawidek | 2007-09-10 | 1 | -2/+2 |
* | Use CTLFLAG_RDTUN for tunable sysctls. | Pawel Jakub Dawidek | 2007-09-01 | 1 | -2/+2 |
* | Some ZFS threads needs stack larger than the default 8kB, so use 16kB of | Pawel Jakub Dawidek | 2007-08-16 | 1 | -1/+8 |
* | Update assertion after revision 1.23. | Pawel Jakub Dawidek | 2007-07-24 | 1 | -1/+1 |
* | Correct a reference-counting mistake in the ZFS code which led to abnormal | Doug Rabson | 2007-07-09 | 2 | -3/+1 |
* | In zfs_vget, if we fail to translate an inode number to the corresponding | Doug Rabson | 2007-06-27 | 1 | -1/+1 |
* | Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); in | Robert Watson | 2007-06-12 | 1 | -17/+12 |
* | Add my copyright. | Marcel Moolenaar | 2007-06-08 | 1 | -0/+28 |
* | - Reduce number of atomic operations needed to be implemented in asm by | Pawel Jakub Dawidek | 2007-06-08 | 7 | -1707/+277 |
* | Missing atomic operations for ZFS/ia64. | Pawel Jakub Dawidek | 2007-06-08 | 1 | -0/+54 |
* | Despite several examples in the kernel, the third argument of | David Malone | 2007-06-04 | 1 | -2/+2 |
* | Reimplement traverse() helper function: | Pawel Jakub Dawidek | 2007-06-04 | 3 | -20/+23 |
* | Revert UF_OPENING workaround for CURRENT. | Konstantin Belousov | 2007-05-31 | 2 | -2/+2 |
* | Adjust va_mask for setattr. FreeBSD doesn't have va_mask, so we initialize it | Pawel Jakub Dawidek | 2007-05-28 | 1 | -0/+1 |
* | Because we allocate componentname structures on stack, bzero() them before | Pawel Jakub Dawidek | 2007-05-28 | 1 | -0/+3 |
* | There are too many false positive LORs reported by WITNESS, so when ZFS | Pawel Jakub Dawidek | 2007-05-26 | 2 | -2/+14 |
* | DNLC_NO_VNODE can't be NULL. | Pawel Jakub Dawidek | 2007-05-24 | 1 | -1/+1 |
* | Initialize ZFS a bit earlier and block root mounting until | Pawel Jakub Dawidek | 2007-05-24 | 1 | -1/+4 |
* | FreeBSD's namecache works quite well with ZFS, so remove DNLC. | Pawel Jakub Dawidek | 2007-05-23 | 3 | -1075/+40 |
* | All objects we create using GFS are directories, so initialize d_type | Pawel Jakub Dawidek | 2007-05-23 | 1 | -2/+2 |
* | Lock vnode on lookup. This fixes ZIL replay for rmdir/unlink/rename. | Pawel Jakub Dawidek | 2007-05-22 | 1 | -0/+3 |
* | Increase debug level - this message is not that important. | Pawel Jakub Dawidek | 2007-05-09 | 1 | -1/+1 |
* | - Add missing lock destruction and remove duplicate initializations. | Pawel Jakub Dawidek | 2007-05-06 | 6 | -5/+14 |
* | Use provider's ident to handle situations when disks are moved around | Pawel Jakub Dawidek | 2007-05-06 | 1 | -10/+161 |
* | MFp4: We don't need to cover vnode_pager_setsize() with the z_map_lock. | Pawel Jakub Dawidek | 2007-05-06 | 1 | -1/+2 |
* | Share-lock a vnode where possible. | Pawel Jakub Dawidek | 2007-05-02 | 3 | -4/+4 |
* | When parent directory has to be unlocked, lock it back with the same lock | Pawel Jakub Dawidek | 2007-05-02 | 1 | -2/+6 |
* | Lock vnode using cn_lkflags in case the caller wants the vnode to be | Pawel Jakub Dawidek | 2007-05-02 | 1 | -1/+1 |
* | The getnewvnode() function sets LK_NOSHARE by default, so if we want to | Pawel Jakub Dawidek | 2007-05-02 | 1 | -3/+9 |
* | ZFS should update timestamps upon the creat() of an existing file. | Pawel Jakub Dawidek | 2007-05-02 | 2 | -2/+5 |
* | - Lock vnode with flags passed in as argument in zfs_vget() and zfs_root(). | Pawel Jakub Dawidek | 2007-05-02 | 1 | -2/+4 |
* | MFp4: Remove LK_RETRY flag when locking vnode in zfs_lookup, we don't want | Pawel Jakub Dawidek | 2007-05-01 | 1 | -1/+6 |
* | White space fixes. | Pawel Jakub Dawidek | 2007-05-01 | 4 | -34/+34 |
* | Add a comment explaining why we call dmu_write() unconditionally, even if | Pawel Jakub Dawidek | 2007-05-01 | 1 | -0/+9 |
* | - Define d_type for ".", ".." and ".zfs" directories. | Pawel Jakub Dawidek | 2007-04-29 | 2 | -0/+5 |
* | Oops, correct important typo in last commit. | Pawel Jakub Dawidek | 2007-04-29 | 1 | -1/+1 |
* | Avoid freeing NULL pointer in case of an error. | Pawel Jakub Dawidek | 2007-04-29 | 1 | -1/+1 |
* | Fix two use-after-free cases. | Pawel Jakub Dawidek | 2007-04-29 | 1 | -2/+2 |
* | MFp4: Optimize mappedwrite() and mappedread() functions to write/read as much | Pawel Jakub Dawidek | 2007-04-26 | 1 | -31/+58 |
* | - Always try to write one whole page at a time. | Pawel Jakub Dawidek | 2007-04-26 | 1 | -7/+9 |
* | MFV: Free znodes immediatelly, allowing the ARC to hold onto less memory. | Pawel Jakub Dawidek | 2007-04-26 | 1 | -1/+1 |