NetBSD/sys/ntfs/TODO

40 lines
1.3 KiB
Plaintext
Raw Normal View History

2000-03-13 22:00:28 +03:00
$NetBSD: TODO,v 1.15 2000/03/13 19:00:28 jdolecek Exp $
2000-02-19 17:42:21 +03:00
- Windows 2000 NTFS support
1999-08-18 19:05:10 +04:00
2000-03-13 22:00:28 +03:00
- basic sysinst support for NTFS
1999-08-18 19:05:10 +04:00
- handle Unicode chars more inteligently - currently only iso-8859-1
chars are supported, it should be possible to get the filename
converted into koi-8, iso-8859-2 & utf-8 at least - there is a set
of patches for FreeBSD adding Unicode support for Joliet CDs worth
adopting:
http://triaez.kaisei.org/~mzaki/joliet/
[almost done]
1999-08-18 19:05:10 +04:00
- better support for writing; tricky is crash recovery
- cleanup the mess with several *readattr*() functions if possible
- convert the code to do caching in buffer cache indexed by
1999-08-18 19:05:10 +04:00
file-vnode/file-offset so that NTFS would take advantage of UBC;
it should also improve performance somewhat, because if it's necessary
to find some offset in a file, it's possible to check if the data
are available in the cache before doing the bmap operation first
(from Chuq)
- working VOP_BALLOC() (new in UBC)
1999-08-18 19:05:10 +04:00
(from Chuq)
1999-09-09 11:35:15 +04:00
- implement writing into resident attributes, so it would be possible
to write into "small" files (<30KB) too
(from Semen Ustimenko <semenu@FreeBSD.org>)
1999-09-09 23:17:17 +04:00
- support mount update
- really implement sync
- write necessary bits to support NTFS in libsa
- NTFS ACL support (though usefullness of such feature is arguable)