summaryrefslogtreecommitdiffstats
path: root/sys/ntfs/ntfs_vfsops.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unused mount list simple_lock() goopedro2006-04-191-3/+2
|
* Use free(9) to free memory allocated with malloc(9), okay krw@, marius@pedro2005-10-101-2/+2
|
* - use MIN()/MAX() rather than min()/max(), to avoid possible truncationbrad2005-05-211-3/+7
| | | | | | | | | | | | | | | | | | | | 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@
* fix a page fault that occurs when a reclaimed vnode is then reused.pat2005-03-081-2/+1
| | | | | | from FreeBSD ok pedro tedu miod, tested by millert and myself
* Before carrying on with the mount request, make sure the process haspedro2005-02-011-2/+18
| | | | enough permissions to access the given device. ok millert@
* * plug memory leak on mount failure.pat2004-12-091-8/+16
| | | | | | * spacing ok tedu pedro millert otto
* constify vfsops; tedu@ okmickey2003-08-141-2/+2
|
* rename export to export_info for c++ safety. report by naddy@tedu2003-05-241-2/+2
|
* un __Ptedu2003-05-201-39/+39
|
* fix the tagsmickey2003-05-201-1/+1
|
* by popular request, NTFS support. read only.tedu2003-05-201-0/+1184
The code comes from NetBSD and was ported by Julian Bordet. ok deraadt@