| Commit message (Expand) | Author | Age | Files | Lines |
* | Add currently unused flag argument to the cluster_read(), | kib | 2013-03-14 | 1 | -1/+1 |
* | Remove fifo.h. The only used function declaration from the header is | kib | 2012-03-11 | 1 | -1/+0 |
* | Remove unneeded cast to u_int. The values as small enough to fit into | kib | 2012-03-04 | 1 | -2/+1 |
* | Fix found places where uio_resid is truncated to int. | kib | 2012-02-21 | 1 | -2/+2 |
* | On LP64 struct ifid is 64-bit aligned while struct fid is 32-bit aligned | marius | 2010-01-23 | 1 | -7/+12 |
* | For cd9660_ioctl, check for recycled vnode after locking it. | kib | 2009-06-10 | 1 | -0/+4 |
* | Fix r193923 by noting that type of a_fp is struct file *, not int. | kib | 2009-06-10 | 1 | -1/+1 |
* | s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args | kib | 2009-06-10 | 1 | -1/+1 |
* | VOP_IOCTL takes unlocked vnode as an argument. Due to this, v_data may | kib | 2009-06-10 | 1 | -6/+17 |
* | Sync with ufs_vnops.c:1.245 and remove support for accessing device nodes | jhb | 2009-01-28 | 1 | -3/+7 |
* | - Fix a typo in a comment. | jhb | 2008-11-18 | 1 | -1/+1 |
* | Remove copy/paste code from UFS to handle sparse blocks. While Rock | jhb | 2008-11-18 | 1 | -6/+0 |
* | Remove unused i_flags field and IN_ACCESS flag from cd9660 in-memory | jhb | 2008-11-18 | 1 | -1/+0 |
* | Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessary | trasz | 2008-10-28 | 1 | -4/+4 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -6/+6 |
* | Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed thread | attilio | 2008-08-28 | 1 | -3/+1 |
* | In cd9660_readdir vop, always initialize the idp->uio_off member. | kib | 2008-06-11 | 1 | -0/+1 |
* | Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method. | pjd | 2007-02-15 | 1 | -0/+29 |
* | Forced commit and #include changes for repo copy from | rodrigc | 2007-02-11 | 1 | -3/+3 |
* | Add marker vnodes to ensure that all vnodes associated with the mount point are | tegge | 2006-01-09 | 1 | -0/+1 |
* | Forgot to replace code to set fsid in vop_getattr. | phk | 2005-03-17 | 1 | -0/+1 |
* | Don't store the disk cdev in all inodes. | phk | 2005-03-16 | 1 | -1/+0 |
* | Use vfs_hash instead of home-rolled. | phk | 2005-03-14 | 1 | -1/+2 |
* | Unbreak a few filesystems for which vnode_create_vobject() wasn't being | peadar | 2005-01-29 | 1 | -0/+19 |
* | Wrap the bufobj operations in macros: BO_STRATEGY() and BO_WRITE() | phk | 2005-01-11 | 1 | -1/+1 |
* | Back when VOP_* was introduced, we did not have new-style struct | phk | 2004-12-01 | 1 | -34/+23 |
* | Mechanically change prototypes for vnode operations to use the new typedefs. | phk | 2004-12-01 | 1 | -9/+9 |
* | Move CD9660 to GEOM backing instead of DEVFS. | phk | 2004-10-29 | 1 | -3/+3 |
* | Eliminate unnecessary KASSERTs. | phk | 2004-10-27 | 1 | -3/+1 |
* | Pointy hat please! | phk | 2004-09-22 | 1 | -3/+3 |
* | De support opening device nodes on CD9660 filesystems. They are | phk | 2004-09-21 | 1 | -13/+9 |
* | Temporarily back out revision 1.77. This changed cd9660_getattr() and | tjr | 2004-09-05 | 1 | -14/+6 |
* | Remove advertising clause from University of California Regent's | imp | 2004-04-07 | 1 | -4/+0 |
* | Fix comment containing vop_readdir_args contents: a_cookies is really | tjr | 2004-02-23 | 1 | -1/+1 |
* | cookies is an array of u_long, not u_int, so MALLOC() it accordingly. | tjr | 2004-02-23 | 1 | -2/+2 |
* | Spell magic '16' number as IO_SEQSHIFT. | kan | 2004-01-19 | 1 | -1/+1 |
* | DuH! | phk | 2003-10-18 | 1 | -1/+1 |
* | Initialize b_offset before calling VOP_SPECSTRATEGY() | phk | 2003-10-18 | 1 | -0/+1 |
* | - Support for multibyte charsets in LIBICONV. | fjoe | 2003-09-26 | 1 | -1/+3 |
* | Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations | phk | 2003-06-15 | 1 | -0/+2 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
* | Finish cleanup of vprint() which was begun with changing v_tag to a string. | njl | 2003-03-03 | 1 | -3/+0 |
* | Clean up whitespace, s/register //, refrain from strong urge to ANSIfy. | des | 2003-03-02 | 1 | -25/+25 |
* | uiomove-related caddr_t -> void * (just the low-hanging fruit) | des | 2003-03-02 | 1 | -1/+1 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -4/+4 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -4/+4 |
* | Temporarily introduce a new VOP_SPECSTRATEGY operation while I try | phk | 2003-01-04 | 1 | -1/+1 |
* | Since Jeffr made the std* functions the default in rev 1.63 of | phk | 2003-01-04 | 1 | -9/+0 |
* | Fix comments and one resulting code confusion about the type of the | phk | 2002-10-16 | 1 | -1/+1 |
* | Change iov_base's type from `char *' to the standard `void *'. All | mike | 2002-10-11 | 1 | -1/+1 |