| Commit message (Expand) | Author | Age | Files | Lines |
* | - Add errmsg to the list of smbfs mount options. | rodrigc | 2005-11-16 | 1 | -7/+23 |
* | This is a workaround for a complicated issue involving VFS cookies and devfs. | dwhite | 2005-11-09 | 1 | -0/+24 |
* | Normalize a significant number of kernel malloc type names: | rwatson | 2005-10-31 | 22 | -36/+36 |
* | Use correct cirteria for determining which directory entries we can | phk | 2005-10-18 | 1 | -1/+1 |
* | Implement the full range of ISO9660 number conversion routines in iso.h. | des | 2005-10-18 | 1 | -49/+35 |
* | Unconditionally mount a CD9660 filesystem as read-only, instead of | rodrigc | 2005-10-17 | 1 | -2/+4 |
* | Use the actual sector size of the media instead of hard-coding it to 2048. | rodrigc | 2005-10-17 | 1 | -3/+12 |
* | Unconditionally mount a UDF filesystem as read-only, instead of | rodrigc | 2005-10-17 | 1 | -2/+4 |
* | - Fix typo. | flz | 2005-10-17 | 1 | -1/+1 |
* | Update nwfs_lookup() to match the current cache_lookup() API. | truckman | 2005-10-16 | 1 | -26/+11 |
* | Reflect mpsafety of the underlying filesystem in the nullfs image. | kris | 2005-10-16 | 1 | -0/+1 |
* | Apply the same fix to a potential race in the ISDOTDOT code in | truckman | 2005-10-16 | 1 | -3/+4 |
* | In preparation for making the modules actually use opt_*.h files | yar | 2005-10-14 | 2 | -8/+0 |
* | 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, most | davidxu | 2005-10-14 | 1 | -1/+1 |
* | - Do not hardcode the bsize to a sectorsize of 2048, even though | rodrigc | 2005-10-09 | 1 | -5/+21 |
* | We don't need 'imp' here. | pjd | 2005-10-07 | 1 | -1/+0 |
* | Second attempt at a work-around for fifo-related socket panics during | rwatson | 2005-10-01 | 1 | -0/+4 |
* | The NWFS code in RELENG_6 is broken due to a typo in | phk | 2005-09-30 | 1 | -1/+1 |
* | Remove checks for BOOTSIG[23] from FAT32 bootblocks. | peadar | 2005-09-29 | 2 | -8/+2 |
* | Back out fifo_vnops.c:1.127, which introduced an sx lock around I/O on | rwatson | 2005-09-27 | 1 | -16/+3 |
* | Assert v_fifoinfo is non-NULL in fifo_close() in order to catch | rwatson | 2005-09-26 | 1 | -0/+1 |
* | Lock the read socket receive buffer when frobbing the sb_state flag on | rwatson | 2005-09-25 | 1 | -2/+2 |
* | Make rule zero really magical, that way we don't have to do anything | phk | 2005-09-24 | 3 | -153/+99 |
* | For reasons of consistency (and necessity), assert an exclusive vnode | rwatson | 2005-09-23 | 1 | -0/+1 |
* | Add fi_sx, an sx lock to serialize I/O operations on the socket pair | rwatson | 2005-09-22 | 1 | -3/+16 |
* | Rewamp DEVFS internals pretty severely [1]. | phk | 2005-09-19 | 6 | -446/+437 |
* | Assert that (vp) is locked in fifo_close(), since we rely on the | rwatson | 2005-09-18 | 1 | -0/+1 |
* | Don't attempt to recurse lockmgr, it doesn't like it. | phk | 2005-09-15 | 2 | -3/+6 |
* | Handle a race condition where NULLFS vnode can be cleaned while threads | kan | 2005-09-15 | 1 | -4/+28 |
* | The socket pointers in fifoinfo are not permitted to be NULL, so | rwatson | 2005-09-15 | 1 | -5/+2 |
* | Various minor polishing. | phk | 2005-09-15 | 3 | -22/+10 |
* | Protect the devfs rule internal global lists with a sx lock, the per | phk | 2005-09-15 | 1 | -1/+9 |
* | Absolve devfs_rule.c from locking responsibility and call it with | phk | 2005-09-15 | 3 | -19/+5 |
* | Close a race which could result in unwarranted "ruleset %d already | phk | 2005-09-15 | 3 | -44/+34 |
* | Trim down now (believed to be) unused fifo_ioctl() and | rwatson | 2005-09-13 | 1 | -65/+75 |
* | As a result of kqueue locking work, socket buffer locks will always | rwatson | 2005-09-13 | 1 | -18/+6 |
* | Annotate two issues: | rwatson | 2005-09-13 | 1 | -0/+12 |
* | Introduce no-op nosup fifo kqueue filter and detach routine, which are | rwatson | 2005-09-12 | 1 | -1/+33 |
* | When a request is made to register a filter on a fifo that doesn't | rwatson | 2005-09-12 | 1 | -2/+2 |
* | Remove DFLAG_SEEKABLE from fifo file descriptors: fifos are not seekable | rwatson | 2005-09-12 | 1 | -1/+1 |
* | Only poll the fifo for read events if the fifo is attached to a readable | rwatson | 2005-09-12 | 1 | -2/+2 |
* | After going to some trouble to identify only the write-related events | rwatson | 2005-09-12 | 1 | -2/+2 |
* | When a writer opens a fifo, wake up the read socket for read, not the | rwatson | 2005-09-12 | 1 | -1/+1 |
* | Add an assertion that fifo_open() doesn't race against other threads | rwatson | 2005-09-12 | 1 | -0/+2 |
* | Rather than reaching into the internals of the UNIX domain socket code | rwatson | 2005-09-12 | 1 | -1/+1 |
* | Clean up prototypes. | phk | 2005-09-12 | 1 | -258/+96 |
* | Cast bf_sysid to const char * when passing it to strncmp(), because | rodrigc | 2005-09-11 | 1 | -1/+1 |
* | Do not declare M_NTFSMNT with extern linkage here, since | rodrigc | 2005-09-11 | 1 | -1/+0 |
* | Ensure the full value is written into inode variables. | obrien | 2005-09-07 | 1 | -2/+2 |
* | Unbreak hpfs/ntfs/udf/ext2fs/reiserfs mounting. | ssouhlal | 2005-09-03 | 3 | -3/+0 |