summaryrefslogtreecommitdiff
path: root/sys/msdosfs
AgeCommit message (Collapse)Author
1999-05-31New struct statfs with mount options. NOTE: this replaces statfs(2),Todd C. Miller
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag.
1999-05-01do not count on BOOTSIG0 and BOOTSIG1 being in a msdos filesystem. NotTheo de Raadt
all filesystems need to contain those; mark@nfr.net
1999-04-28zap the newhashinit hack.Artur Grabowski
Add an extra flag to hashinit telling if it should wait in malloc. update all calls to hashinit.
1999-02-26compat with uvm vnode pagerArtur Grabowski
1999-02-19Fix a bug where the root directory could look corrupted on FAT12.Artur Grabowski
I'm not sure if this fix is correct but: some comments in the code say that it should be done this way, it fixes the particular problem, it doesn't break anything else, noone who got the diff complained (in two months).
1999-01-11panic prints a newline for you, don't do it in the panic stringTodd C. Miller
1999-01-10honor MNT_NOATIME. from FreeBSDArtur Grabowski
1999-01-10make this compile with MSDOSFS_DEBUGArtur Grabowski
1999-01-10make this work with MSDOSFS_DEBUGArtur Grabowski
1999-01-08always initialize error in inactiveArtur Grabowski
1998-08-21Make tabbing better.Constantine Sapuntzakis
1998-08-21malloc can block so there was a race in this code which could cause twoConstantine Sapuntzakis
vnodes to be created for a given file.
1998-08-06Rename vop_revoke, vn_bwrite, vop_noislocked, vop_nolock, vop_nounlockConstantine Sapuntzakis
to be vop_generic_revoke, vop_generic_bwrite, vop_generic_islocked, vop_generic_lock and vop_generic_unlock. Create vop_generic_abortop and propogate change to all file systems. Fix PR/371. Get rid of locking in NULLFS (should be mostly unnecessary now except for forced unmounts).
1998-06-09the theTheo de Raadt
1998-05-02correct a fat32 write lockup; oki@yk.rim.or.jpTheo de Raadt
1998-04-17confusion over & and &&; cross@va.pubnix.comTheo de Raadt
1998-02-23GAS 2.8 + KNFNiklas Hallqvist
1998-02-08Updates to match type changes in syscall tablesThorsten Lockert
1998-01-11FAT32 support from NetBSD by Wolfgang Solfrank.Niels Provos
1997-11-11Initialize the de_lock. some KNFNiklas Hallqvist
1997-11-10dont crash on update mounting.Niels Provos
1997-11-09Don't panic on sync, based on changes from ext2fs_vfsops.c and ffs_vfsops.cTodd C. Miller
1997-11-06Fixed minor bug in msdosfs_hashgetConstantine Sapuntzakis
1997-11-06Updates for VFS Lite 2 + soft update.Constantine Sapuntzakis
1997-10-06back out vfs lite2 till after 2.2Theo de Raadt
1997-10-06VFS Lite2 ChangesConstantine Sapuntzakis
1997-10-04cleanup timestamp code for NT/Win95; khym@bga.comTheo de Raadt
1997-07-03rm of dir returns EPERM; more careful about ..; netbsdTheo de Raadt
1997-06-20Change errno cause by mounting invalid filesystems from EINVAL to EFTYPE.kstailey
1997-03-02Sync msdosfs with NetBSD sans const-ness. NetSBD log messages:Todd C. Miller
Fix panic on mkdir. Thanks to Dave Huang for finding the bug. Fixes a bug with allowed/forbidden characters in non-W95 filenames. Don't extend directory when nothing is written to it.
1997-02-24OpenBSD tagsNiklas Hallqvist
1996-10-24<sys/dir.h> is for use as a compatibility interface only. Warn ifThorsten Lockert
included by kernel modules, and also remove use from any modules that currently attempt to use it.
1996-10-04syncTheo de Raadt
1996-04-21partial sync with netbsd 960418, more to comeTheo de Raadt
1996-04-19NetBSD 960317 mergeNiklas Hallqvist
1996-03-02Fix missed s/ts_/tv_/ replacements in last patchNiklas Hallqvist
1996-02-29From NetBSD: merge with 960217Niklas Hallqvist
1996-02-21elliminate unneccessary printf in dos2unix time conversion,Michael Shalayeff
coze for Windoze 95 fs it is ok.
1996-01-29from netbsd;Theo de Raadt
Instead of using '#ifdef atari' to handle the differences of Gemdosfs and Msdosfs, use a flag that can be set by mount_msdos. This is definitely more flexible. Fix error in previous change: don't use the local FS mount data before it's actually allocated. Pass mount arguments to msdosfs_mountfs instead, and use them (as in iso_mountfs for example).
1995-12-14from netbsd (mostly by ws):Theo de Raadt
Win95 ignores case on lookup Really don't generate long names when mounted with -s Fix cookie handling Don't forward credentials to bread, it makes nfs panic (Of course, nfs shouldn't rely on the credentials not being referenced) Don't give directory entry to deget, it could result in a deadlock Use device blocks, not clusters for logical block numbers Add support for Win'95 separate creation/modification/access timestamps Re-introduce lowercase filenames for non-Win'95-filesystems Fix thinko with block boundaries in directories Don't overwrite dirclust, it's needed later on Enable flock(2).
1995-10-18initial import of NetBSD treeTheo de Raadt