Age | Commit message (Expand) | Author |
2013-09-14 | Correct the handling of I/O of >=2^32 bytes and the ktracing there of | Philip Guenther |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-06-11 | final removal of daddr64_t. daddr_t has been 64 bit for a long enough | Theo de Raadt |
2013-06-02 | Typo | Philip Guenther |
2013-05-30 | UFS does't do inode numbers >2^32, so use a smaller type internally, | Philip Guenther |
2013-04-15 | Add an f_mntfromspec member to struct statfs, which specifies the name of | Joel Sing |
2013-03-28 | Add support for _PC_TIMESTAMP_RESOLUTION for ffs/mfs, cd9600, ext2, | Philip Guenther |
2012-09-10 | Cleanup VFS mount string handling: | Joel Sing |
2012-07-11 | If the current offset is strictly less than the process filesize | Philip Guenthe |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2011-09-18 | Fix more printf format string bugs in sys/ufs. | Alexander Bluhm |
2011-07-08 | ansi, no binary change | Jonathan Gray |
2011-07-04 | move the specfs code to a place people can see it; ok guenther thib krw | Theo de Raadt |
2011-07-04 | bread does nothing with its ucred argument. remove it. ok matthew | Ted Unangst |
2011-07-04 | bread() takes daddr64_t block address, not int32_t, so use correct cast. brea... | Kenneth R Westerback |
2011-07-03 | correctify NULL 0 confusion | Ted Unangst |
2011-07-02 | rename VFSDEBUG to VFLCKDEBUG; | Thordur I. Bjornsson |
2011-06-30 | Add DUID support for ext2fs mounts. | Joel Sing |
2011-04-05 | Every single vop_default is set to eopnotsupp, so retire it | Thordur I. Bjornsson |
2010-12-21 | Bring back the "End the VOP experiment." diff, naddy's issues where | Thordur I. Bjornsson |
2010-11-18 | Make sure readdir cookies are actually allocated with the correct size | Miod Vallat |
2010-09-23 | The only sensible argument for VOP_* calls that take a struct proc pointer is | Owain Ainsworth |
2010-09-23 | Change: | Owain Ainsworth |
2010-09-10 | Backout the VOP diff until the issues naddy was seeing on alpha (gcc3) | Thordur I. Bjornsson |
2010-09-09 | Rename lookup/relookup to vfs_lookup/vfs_relookup. | Thordur I. Bjornsson |
2010-09-06 | End the VOP experiment. Instead of the ridicolusly complicated operation | Thordur I. Bjornsson |
2010-08-02 | Fix readlink(2) on FFS and ext2 filesystems to consistently return | Matthew Dempsky |
2010-05-18 | dont let sys/ioctl.h imply that you get the ioctls in dkio.h. this | David Gwynne |
2010-02-16 | add some defines needed for the upcoming newfs_ext2fs; ok miod@ | Otto Moerbeek |
2009-10-31 | Use suser when possible. Suggested by miod@. | Federico G. Schwindt |
2009-09-05 | - don't try to shove a daddr64_t value into an int32_t. | Jasper Lievisse Adriaanse |
2009-08-21 | - remove statement after panic(), it won't be reached. | Jasper Lievisse Adriaanse |
2009-08-21 | - change two variables to daddr64_t, eventhough they won't overflow | Jasper Lievisse Adriaanse |
2009-08-13 | - remove super-obvious comments from $fs_vnodeop_entries[] | Jasper Lievisse Adriaanse |
2009-07-09 | Remove the VREF() macro and replaces all instances with a call to verf(), | Thordur I. Bjornsson |
2009-06-02 | blkno's are 64 bit so need %llu, found by Parfait | Theo de Raadt |
2008-11-24 | styled code is happy code | Ted Unangst |
2008-11-23 | fancy new ext2fs can have big inodes. we can possibly still read them | Ted Unangst |
2008-09-12 | Remove bzero/memset calls after pool_gets by passing the PR_ZERO | Bret Lambert |
2008-06-12 | Bring biomem diff back into the tree after the nfs_bio.c fix went in. | Theo de Raadt |
2008-06-11 | back out biomem diff since it is not right yet. Doing very large | Theo de Raadt |
2008-06-10 | Buffer cache revamp | Bob Beck |
2008-06-09 | Update access(2) to have modern semantics with respect to X_OK and | Todd C. Miller |
2008-05-08 | retire vn_default_error() and replace all instances | Thordur I. Bjornsson |
2008-01-05 | Make the ffs code 64-bit disk block number clean. Based on a diff | Otto Moerbeek |
2007-10-29 | MALLOC/FREE -> malloc/free | Charles Longeau |
2007-10-09 | MALLOC+memset(,0,) -> malloc+M_ZERO. Don't forget FREE->free this time. | Kenneth R Westerback |
2007-10-06 | Simpliest memset(,0,) -> M_ZERO changes. One (caddr *) cast removal, | Kenneth R Westerback |
2007-09-23 | Move notatime check from ffs_update() to ffs_read() and ufs_setattr(). | Todd C. Miller |
2007-06-22 | declare "uid" as uid_t instead of u_int, and fix format string accordingly | Jasper Lievisse Adriaanse |