summaryrefslogtreecommitdiff
path: root/sys/ntfs/ntfs_vfsops.c
AgeCommit message (Collapse)Author
2009-08-13- remove super-obvious comments from vnodeop_entries[]Jasper Lievisse Adriaanse
- remove #ifdef someos blocks, makes this a tad easier to read agreed by art@ and thib@
2009-07-09Remove the VREF() macro and replaces all instances with a call to verf(),Thordur I. Bjornsson
which is exactly what the macro does. Macro's that are nothing more then: #define FUNCTION(arg) function(arg) are almost always pointless and should go away. OK blambert@ Agreed by many.
2008-05-13Remove commented out NetBSD __KERNEL_RCSID macro usage.Brad Smith
ok dlg@
2007-09-17Only the most obvious bzero() -> M_ZERO changes. No cast changes, noKenneth R Westerback
MALLOC/FREE, etc. Just adding M_ZERO to malloc() and deleting an immediately adjacent bzero().
2006-04-19Remove unused mount list simple_lock() gooPedro Martelletto
2005-10-10Use free(9) to free memory allocated with malloc(9), okay krw@, marius@Pedro Martelletto
2005-05-21- use MIN()/MAX() rather than min()/max(), to avoid possible truncationBrad Smith
of 64bit values to 'int' - read always single cluster of data, to avoid confusing the buffer cache; this appears to fix the random file content corruption which happens when more than one cluster is read at the same time, i.e. for files > 3*cluster_size - fix some questionable pointer arithmetics; gcc-3.4.x didn't like it - g/c redundant debug printf - remove all traces of non-working quota support add quota support to TODO - makes sense only once writing support would be implemented, and only once NTFS would support notion of file 'owner' - use 64bit local variable for free space computation From NetBSD - Comment fixes from joris@ ok millert@ joris@ pedro@
2005-03-08fix a page fault that occurs when a reclaimed vnode is then reused.Patrick Latifi
from FreeBSD ok pedro tedu miod, tested by millert and myself
2005-02-01Before carrying on with the mount request, make sure the process hasPedro Martelletto
enough permissions to access the given device. ok millert@
2004-12-09* plug memory leak on mount failure.Patrick Latifi
* spacing ok tedu pedro millert otto
2003-08-14constify vfsops; tedu@ okMichael Shalayeff
2003-05-24rename export to export_info for c++ safety. report by naddy@Ted Unangst
2003-05-20un __PTed Unangst
2003-05-20fix the tagsMichael Shalayeff
2003-05-20by popular request, NTFS support. read only.Ted Unangst
The code comes from NetBSD and was ported by Julian Bordet. ok deraadt@