diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-05-21 18:05:59 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-05-21 18:05:59 +0000 |
commit | 46b230207cc84bc82f0cd18d81d2c57e55ea8a4f (patch) | |
tree | bbbf59576a521b87a654fb29aa46846b63ceca14 /sys/ntfs/TODO | |
parent | 404f35f676d5df1450f030d77a5f18c465333703 (diff) |
- use MIN()/MAX() rather than min()/max(), to avoid possible truncation
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@
Diffstat (limited to 'sys/ntfs/TODO')
-rw-r--r-- | sys/ntfs/TODO | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ntfs/TODO b/sys/ntfs/TODO index d0909c37502..f31e318810b 100644 --- a/sys/ntfs/TODO +++ b/sys/ntfs/TODO @@ -1,4 +1,4 @@ -$OpenBSD: TODO,v 1.2 2003/05/20 03:23:11 mickey Exp $ +$OpenBSD: TODO,v 1.3 2005/05/21 18:05:58 brad Exp $ $NetBSD: TODO,v 1.1 2002/12/23 17:38:31 jdolecek Exp $ - convert the code to do caching in buffer cache indexed by @@ -27,6 +27,7 @@ $NetBSD: TODO,v 1.1 2002/12/23 17:38:31 jdolecek Exp $ (from Semen Ustimenko <semenu@FreeBSD.org>) generally, better write support +- once writing would work, consider quota support - support mount update |