aboutsummaryrefslogtreecommitdiff
path: root/libdiskfs
Commit message (Collapse)AuthorAgeFilesLines
* (diskfs_lookup): But only if not readonly.Michael I. Bushnell1996-04-161-1/+2
|
* (diskfs_lookup): Always update atime after I/O.Michael I. Bushnell1996-04-161-0/+3
|
* (diskfs_dirrewrite): Update mtime.Michael I. Bushnell1996-04-161-0/+1
|
* (diskfs_dirremove): Update mtime.Michael I. Bushnell1996-04-161-0/+3
|
* (diskfs_direnter): Update mtime.Michael I. Bushnell1996-04-161-0/+2
|
* (diskfs_enter_lookup_cache): Never cache . or ..Michael I. Bushnell1996-04-121-0/+7
|
* Include <hurd.h>.Michael I. Bushnell1996-04-111-1/+2
|
* (fsys-MIGSFLAGS, fs-MIGSFLAGS, io-MIGSFLAGS, ifsock-MIGSFLAGS):Michael I. Bushnell1996-04-111-4/+4
| | | | Reference fsmutations.h in $(srcdir).
* (diskfs_start_bootstrap): Print helpful message before doing anythingMichael I. Bushnell1996-04-111-0/+3
| | | | else.
* (struct lookup_cache):Miles Bader1996-04-101-65/+175
| | | | | | | | | | | | | | | | Add NEXT & PREV fields. Rename LEN back to NAME_LEN. (lru_cache, mru_cache): New variables. (first_cache, last_cache): Variables removed. (make_mru, make_lru, find_cache, init_lookup_cache): New functions. (diskfs_enter_lookup_cache, diskfs_purge_lookup_cache, diskfs_check_lookup_cache): Rewrite to use the linked list. Deal with negative entries. Reuse old entries for the given name.
* (diskfs_dirremove):Miles Bader1996-04-101-1/+1
| | | | Use diskfs_*_lookup_cache functions instead of names without `lookup_'.
* (diskfs_dirrewrite):Miles Bader1996-04-101-2/+2
| | | | Use diskfs_*_lookup_cache functions instead of names without `lookup_'.
* (diskfs_direnter):Miles Bader1996-04-101-1/+1
| | | | Use diskfs_*_lookup_cache functions instead of names without `lookup_'.
* (diskfs_enter_lookup_cache, diskfs_purge_lookup_cache,Miles Bader1996-04-101-6/+5
| | | | | diskfs_check_lookup_cache): Renamed from versions without `lookup_'.
* (diskfs_check_lookup_cache):Miles Bader1996-04-101-109/+77
| | | | | | | | | | Correctly handle the case where the lookup returns DIR itself. (diskfs_enter_lookup_cache, diskfs_purge_lookup_cache, diskfs_check_lookup_cache): Renamed from versions without `lookup_'. (diskfs_check_cache): Declare I. (struct lookup_cache, diskfs_enter_cache): Change NAMELEN field to LEN. (_diskfs_purge_cache_deletion): Delete function.
* (diskfs_lookup):Miles Bader1996-04-101-15/+27
| | | | | Deal with DS or NP being 0. Use diskfs_*_lookup_cache functions instead of names without `lookup_'.
* (diskfs_cached_lookup): New declaration.Michael I. Bushnell1996-04-031-0/+4
|
* (struct node): New member `cache_id'.Michael I. Bushnell1996-04-031-0/+2
|
* (diskfs_purge_cache): If freeing node at LOOKUP_CACHE_TAIL, bumpMichael I. Bushnell1996-04-021-0/+4
| | | | | LOOKUP_CACHE_TAIL back itself too. (_diskfs_purge_cache_deletion): Likewise.
* (diskfs_lookup): And correctly, too.Michael I. Bushnell1996-04-021-1/+2
|
* (diskfs_enter_cache): Don't set LC->next->prev if LC->next is null.Michael I. Bushnell1996-04-021-1/+2
|
* (diskfs_lookup): When doing diskfs_checkdirmod check, don't returnMichael I. Bushnell1996-04-021-2/+8
| | | | | success when we should return ENOENT, just because checkdirmod won. Also enter successful lookups for CREATE or LOOKUP in the name cache.
* Initialize shared page magic number.Roland McGrath1996-03-291-6/+7
|
* (statistics): New variable.Michael I. Bushnell1996-03-251-0/+11
| | | | (diskfs_check_cache): Keep statistics on cache performance.
* (diskfs_parse_runtime_options): Supply new argument to argp_parse.Miles Bader1996-03-221-1/+1
|
* (diskfs_lookup): Dereference NP in call to diskfs_checkdirmod.Michael I. Bushnell1996-03-221-1/+1
|
* (diskfs_direnter): Don't fall off end.Michael I. Bushnell1996-03-221-0/+1
|
* (diskfs_enter_cache, diskfs_purge_cache, diskfs_check_cache): Add declarations.Michael I. Bushnell1996-03-221-0/+14
|
* (diskfs_S_dir_unlink): Use new args for diskfs_dirremove.Michael I. Bushnell1996-03-221-1/+1
|
* (diskfs_S_dir_rmdir): Use new args for diskfs_dirremove.Michael I. Bushnell1996-03-221-1/+1
|
* (diskfs_rename_dir): Use new args for diskfs_dirrewrite andMichael I. Bushnell1996-03-221-3/+3
| | | | diskfs_dirremove.
* (diskfs_S_dir_rename): Use new args for dirrewrite and dirremove.Michael I. Bushnell1996-03-221-2/+2
|
* (diskfs_clear_directory): Use new diskfs_dirremove args.Michael I. Bushnell1996-03-221-2/+2
|
* (OTHERSRCS): Add direnter.c, dirrewrite.c, dirremove.c, and lookup.c.Michael I. Bushnell1996-03-221-1/+1
|
* *** empty log message ***Michael I. Bushnell1996-03-201-10/+0
|
* (diskfs_lookup_hard): Remove mention of ENOTDIR and EACCES errors.Michael I. Bushnell1996-03-201-4/+0
|
* (diskfs_lookup): Cleaner.Michael I. Bushnell1996-03-201-8/+15
|
* (diskfs_lookup): Do permission checking and cache looking here.Michael I. Bushnell1996-03-201-1/+46
|
* (diskfs_null_dirstat): New function.Michael I. Bushnell1996-03-201-0/+4
|
* (diskfs_S_dir_lookup): Don't check cache here.Michael I. Bushnell1996-03-201-18/+1
|
* Initial revisionMichael I. Bushnell1996-03-202-0/+123
|
* (diskfs_S_dir_unlink): Don't frob cache here.Michael I. Bushnell1996-03-201-1/+0
|
* (diskfs_S_dir_rmdir): Don't frob cache here.Michael I. Bushnell1996-03-201-1/+0
|
* (diskfs_rename_dir): dittoMichael I. Bushnell1996-03-201-1/+0
|
* (diskfs_S_dir_rename): dittoMichael I. Bushnell1996-03-201-1/+0
|
* (diskfs_clear_directory): Don't frob cache here.Michael I. Bushnell1996-03-201-3/+1
|
* (diskfs_rename_dir): Don't frob cache here.Michael I. Bushnell1996-03-201-2/+0
|
* (diskfs_S_dir_rename): Don't frob cache here.Michael I. Bushnell1996-03-201-1/+0
|
* (diskfs_dirrewrite):Michael I. Bushnell1996-03-201-0/+2
|
* (diskfs_create_node): Don't frob cache here.Michael I. Bushnell1996-03-201-2/+0
|