summaryrefslogtreecommitdiff
path: root/sys/fs/msdosfs
AgeCommit message (Expand)Author
2014-02-25Ensure that the top level sysctl nodes (kern, vfs, net, ...) exist beforepooka
2014-02-07Change vnode operation lookup to return the resulting vnode *vpp unlocked.hannken
2014-01-23Change vnode operations create, mknod, mkdir and symlink to returnhannken
2014-01-17Change vnode operations create, mknod, mkdir and symlink to keep thehannken
2013-12-24don't treat adjacent members as a larger arraymlelstv
2013-11-23change the mountlist CIRCLEQ into a TAILQchristos
2013-11-02Stop using v_mount of an unreferenced vnode -- save the mount whilehannken
2013-10-20provide a function to access the name and extension as a single array aschristos
2013-09-30Replace macro v_specmountpoint with two functions spec_node_getmountedfs()hannken
2013-04-15Don't attempt to mount file system with clusters larger than MAXBSIZE.jakllsch
2013-03-18C99 section 6.7.2.3 (Tags) Note 3 states that:plunky
2013-01-28A little more debugging.christos
2013-01-27don't need sys/mount.h in userland.christos
2013-01-27tidy up debugging printfs; no functional change.christos
2013-01-26fix fstat build.christos
2013-01-26more cross-compile friendly.christos
2013-01-26expose more stuff if MAKEFS is defined for the headers, and arrange forchristos
2012-12-28Move the initialization of n to after the error branch.hannken
2012-12-20Revert rev. 1.20 now that bread() has been fixed.hannken
2012-12-20Change bread() and breadn() to never return a buffer onhannken
2012-11-05Excise struct componentname from the namecache.dholland
2012-11-05Disentangle the namecache from the internals of namei.dholland
2012-11-04Stylistic changes in comments/strings:jakllsch
2012-11-04And correct a typo that wasn't corrected in previous.jakllsch
2012-11-04Correct constant in comment to match the expression it is derived from.jakllsch
2012-11-04Check that the FSInfo block's next free cluster suggestion is actuallyjakllsch
2012-11-04((u_long)-1) will not always be 0xffffffff, which is what we actuallyjakllsch
2012-10-03We don't actually want to round the number of elements in the bitmapjakllsch
2012-07-22Move some the test for MAKEENTRY into the cache_enter(9). Make somermind
2012-07-07Revert rev 1.95 since getdisksize() no longer returns secsize=0.tsutsui
2012-06-30Add a sanity check if secsize returned from getdisksize() isn't bogus.tsutsui
2012-04-29change vflushbuf() to take the full FSYNC_* flags.chs
2012-04-09pcbmap(): We cannot use bread() here as for the pagedaemon getblk()hannken
2012-04-03Add missing braces in previous commit.njoly
2012-04-02Report the SF_ARCHIVED file flag if set.njoly
2012-03-13Replace the remaining KAUTH_GENERIC_ISSUSER authorization calls withelad
2012-02-03Only use MALLOC_DECLARE if it exists. Helps with the dirty _KERNELjoerg
2011-11-21Add missing fstrans_done().hannken
2011-11-14VOP_OPEN() needs a locked vnode. All these copy-and-pasted xxxfs_mount()hannken
2011-10-07As vnalloc() always allocates with PR_WAITOK there is no longer the needhannken
2011-07-20Even though msdosfs never truncates file names it advertises _PC_NO_TRUNChannken
2011-06-16Rename uvm_vnp_zerorange(struct vnode *, off_t, size_t) tohannken
2011-06-12Welcome to 5.99.53! Merge rmind-uvmplock branch:rmind
2011-05-19Remove cache_purge(9) calls from reclamation routines in the file systems,rmind
2011-04-26Change vflushbuf() to return an error if a synchronous write fails.hannken
2011-04-04Msdosfs on-disk meta data is not sufficient to create or validate file handles.hannken
2011-03-22When truncating a file purge the fat cache after setting the new sizehannken
2011-03-20When extending a file, either by truncating or by writing past EOF makehannken
2011-03-19Remove a vnode reference leak from msdosfs_rename. Release tdvp if eitherhannken
2011-03-03In rename, use char[12] for new names instead of [11]. At leastpooka