diff options
author | Miles Bader <miles@gnu.org> | 1996-11-12 23:40:39 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-11-12 23:40:39 +0000 |
commit | 53796808ad4d04257004ceb3c3b763bb5067d61c (patch) | |
tree | cb611c135a19412bf38d8bb36d609e41c283302d | |
parent | cb5252bbc91235591e89e34d571026471ed95f9c (diff) |
.
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | ext2fs/ChangeLog | 12 |
2 files changed, 13 insertions, 2 deletions
@@ -105,6 +105,7 @@ See `tasks', the exported task list. *** fsys_get_options should return the disk name. *** Add `author_tracks_uid' flag to struct node, and use it in places that modify author/uid. Initialized to 0. !! +*** Move file_getfh and fsys_getfile here (from ufs). !!! *** Use idvecs. !!! ** libfshelp @@ -179,11 +180,9 @@ See `tasks', the exported task list. round_page (write size). ** ext2fs -*** Support chflags/st_flags and convert to/from ext2 flags on disk. !!! *** Try to write directories with 512-byte record boundaries. !! *** Maybe file_pager_write_page should be able to accurately reproduce holes *** Add byte-swapping. !! -*** Implement file_getfh and fsys_getfile. !!! ** crash *** Write core files. !! diff --git a/ext2fs/ChangeLog b/ext2fs/ChangeLog index 005c050d..1bcc0682 100644 --- a/ext2fs/ChangeLog +++ b/ext2fs/ChangeLog @@ -1,3 +1,15 @@ +Tue Nov 12 17:53:08 1996 Miles Bader <miles@gnu.ai.mit.edu> + + * inode.c (diskfs_validate_flags_change): New function. + (write_node): Convert generic flags in ST->st_flags to ext2- + specific flags in DI->i_flags. + (read_node): Renamed from read_disknode; all callers changed. + Convert ext2-specific flags on disk to generic flags in ST. + [!UF_APPEND] (UF_APPEND): New macro (temporary). + [!UF_NODUMP] (UF_NODUMP): New macro (temporary). + [!UF_IMMUTABLE] (UF_IMMUTABLE): New macro (temporary). + <sys/stat.h>: New include. + Thu Oct 24 16:24:05 1996 Miles Bader <miles@gnu.ai.mit.edu> * ext2fs.c (startup_children, runtime_children): New variables. |