| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert UF_OPENING workaround for CURRENT. | kib | 2007-05-31 | 2 | -2/+2 |
* | Adjust va_mask for setattr. FreeBSD doesn't have va_mask, so we initialize it | pjd | 2007-05-28 | 1 | -0/+1 |
* | Because we allocate componentname structures on stack, bzero() them before | pjd | 2007-05-28 | 1 | -0/+3 |
* | There are too many false positive LORs reported by WITNESS, so when ZFS | pjd | 2007-05-26 | 2 | -2/+14 |
* | DNLC_NO_VNODE can't be NULL. | pjd | 2007-05-24 | 1 | -1/+1 |
* | Initialize ZFS a bit earlier and block root mounting until | pjd | 2007-05-24 | 1 | -1/+4 |
* | FreeBSD's namecache works quite well with ZFS, so remove DNLC. | pjd | 2007-05-23 | 3 | -1075/+40 |
* | All objects we create using GFS are directories, so initialize d_type | pjd | 2007-05-23 | 1 | -2/+2 |
* | Lock vnode on lookup. This fixes ZIL replay for rmdir/unlink/rename. | pjd | 2007-05-22 | 1 | -0/+3 |
* | Increase debug level - this message is not that important. | pjd | 2007-05-09 | 1 | -1/+1 |
* | - Add missing lock destruction and remove duplicate initializations. | pjd | 2007-05-06 | 6 | -5/+14 |
* | Use provider's ident to handle situations when disks are moved around | pjd | 2007-05-06 | 1 | -10/+161 |
* | MFp4: We don't need to cover vnode_pager_setsize() with the z_map_lock. | pjd | 2007-05-06 | 1 | -1/+2 |
* | Share-lock a vnode where possible. | pjd | 2007-05-02 | 3 | -4/+4 |
* | When parent directory has to be unlocked, lock it back with the same lock | pjd | 2007-05-02 | 1 | -2/+6 |
* | Lock vnode using cn_lkflags in case the caller wants the vnode to be | pjd | 2007-05-02 | 1 | -1/+1 |
* | The getnewvnode() function sets LK_NOSHARE by default, so if we want to | pjd | 2007-05-02 | 1 | -3/+9 |
* | ZFS should update timestamps upon the creat() of an existing file. | pjd | 2007-05-02 | 2 | -2/+5 |
* | - Lock vnode with flags passed in as argument in zfs_vget() and zfs_root(). | pjd | 2007-05-02 | 1 | -2/+4 |
* | MFp4: Remove LK_RETRY flag when locking vnode in zfs_lookup, we don't want | pjd | 2007-05-01 | 1 | -1/+6 |
* | White space fixes. | pjd | 2007-05-01 | 4 | -34/+34 |
* | Add a comment explaining why we call dmu_write() unconditionally, even if | pjd | 2007-05-01 | 1 | -0/+9 |
* | - Define d_type for ".", ".." and ".zfs" directories. | pjd | 2007-04-29 | 2 | -0/+5 |
* | Oops, correct important typo in last commit. | pjd | 2007-04-29 | 1 | -1/+1 |
* | Avoid freeing NULL pointer in case of an error. | pjd | 2007-04-29 | 1 | -1/+1 |
* | Fix two use-after-free cases. | pjd | 2007-04-29 | 1 | -2/+2 |
* | MFp4: Optimize mappedwrite() and mappedread() functions to write/read as much | pjd | 2007-04-26 | 1 | -31/+58 |
* | - Always try to write one whole page at a time. | pjd | 2007-04-26 | 1 | -7/+9 |
* | MFV: Free znodes immediatelly, allowing the ARC to hold onto less memory. | pjd | 2007-04-26 | 1 | -1/+1 |
* | MFV: Functions name change. | pjd | 2007-04-26 | 1 | -4/+4 |
* | ZIL (ZFS Intent Log) can be safely turned on and off at run time, because | pjd | 2007-04-24 | 1 | -1/+1 |
* | MFp4: Now that ZFS can use FreeBSD's namecache, turn it off by default and | pjd | 2007-04-24 | 1 | -0/+4 |
* | MFp4: Rearange the code so vobject is destroyed from reclaim() method like | pjd | 2007-04-24 | 2 | -21/+22 |
* | MFp4: Once page is written successfully, we should clear the dirty bits. | pjd | 2007-04-24 | 1 | -0/+3 |
* | MFp4: Reduce diff against vendor. | pjd | 2007-04-24 | 3 | -2/+4 |
* | MFp4: We have stronger 'lock already initialized' check now, so we can | pjd | 2007-04-24 | 1 | -1/+0 |
* | Mostly-cosmetic fixes in low-memory warning messages: | bmah | 2007-04-23 | 1 | -6/+7 |
* | Too much diff reduction. 'cmd' has to be u_long. | pjd | 2007-04-23 | 1 | -3/+3 |
* | MFp4: Reduce diff against vendor code: | pjd | 2007-04-23 | 12 | -474/+856 |
* | Fix 'zpool status -v'. To get object number we should use ZFS_DIRENT_OBJ() | pjd | 2007-04-22 | 1 | -1/+2 |
* | Fix st_rdev handling (implement it, actually). | pjd | 2007-04-22 | 2 | -2/+9 |
* | MFp4: | pjd | 2007-04-21 | 5 | -25/+38 |
* | MFp4: Fix automatic snapshot mount when unprivileged user does lookup | pjd | 2007-04-18 | 1 | -7/+8 |
* | MFp4: We check for PRIV_VFS_MOUNT already in mount(2) syscall and we don't | pjd | 2007-04-18 | 1 | -4/+0 |
* | Simplify. | pjd | 2007-04-17 | 1 | -4/+0 |
* | - Fix a leftover - vfs_mount_alloc() is now exported properly. | pjd | 2007-04-17 | 1 | -4/+5 |
* | Ignore hostid check for root-on-ZFS configurations. Making hostid available | pjd | 2007-04-17 | 1 | -1/+5 |
* | Uncomment forgotten check. Without this check in-place, ZFS will panic on | pjd | 2007-04-16 | 1 | -1/+1 |
* | MFp4: Start DNLC after desiredvnodes variable is initialized. | pjd | 2007-04-15 | 1 | -2/+2 |
* | Fix RAID-Z resilvering. | pjd | 2007-04-14 | 1 | -2/+16 |