summaryrefslogtreecommitdiff
path: root/ftpfs
AgeCommit message (Collapse)Author
2000-07-26* Makefile (HURDLIBS): Reorder libs such that the threads libMark Kettenis
comes before the ports lib. This makes sure the functions in libthreads properly override the stubs in libports with the new dynamic linker semantics in glibc 2.2.
1999-07-111999-07-09 Thomas Bushnell, BSG <tb@mit.edu>Thomas Bushnell
* ccache.c (ccache_read): Use mmap instead of vm_allocate. * netfs.c (get_dirents): Likewise.
1999-07-11.Roland McGrath
1999-07-111999-07-10 Roland McGrath <roland@baalperazim.frob.com>Roland McGrath
* netfs.c: Add #include <sys/mman.h> for munmap decl. * ccache.c: Likewise.
1999-07-031999-07-03 Thomas Bushnell, BSG <tb@mit.edu>Thomas Bushnell
* ccache.c (ccache_read): Use munmap instead of vm_deallocate. (ccache_invalidate): Likewise. (ccache_free): Likewise. * netfs.c (get_dirents): Likewise.
1999-01-31Sun Jan 31 18:33:55 1999 Thomas Bushnell, BSG <tb@mit.edu>Thomas Bushnell
* netfs.c (netfs_attempt_utimes): Implement new possibility that ATIME or MTIME might be null.
1998-10-20Add braces to silence gcc warnings.Roland McGrath
1998-09-04.Roland McGrath
1998-09-041998-09-04 Roland McGrath <roland@baalperazim.frob.com>Roland McGrath
* ftpfs.c (netfs_append_args): Use %ld for time_t and %Zu for size_t.
1997-09-09.Miles Bader
1997-09-09(netfs_append_args):Miles Bader
Fix printed name of --node-cache-size. (parse_runtime_opt): New function. (runtime_argp): Use it.
1997-09-09.Miles Bader
1997-09-09(delete):Miles Bader
Immediately free entries without nodes.
1997-08-28(ccache_read):Miles Bader
Always update CC->max to something reasonable after a transfer. Use ports_self_interrupted to check for interrupts.
1997-08-28.Miles Bader
1997-08-28(parse_common_opt):Miles Bader
Turn on debugging when there *aren't* any errors...
1997-08-22.Miles Bader
1997-08-22(netfs_maxsymlinks):Miles Bader
Initialize to 12. (parse_common_opt): Release DEBUG_LOCK even if we get an error.
1997-08-18.Miles Bader
1997-08-18(netfs_append_args):Miles Bader
Print FILE argument to --debug. (debug_stream, debug_stream_name): New variables. (debug_lock): New variable (was local to cntl_debug). (cntl_debug): Print to DEBUG_STREAM. (ftpfs_ftp_hooks): Use ports_self_interrupted to check for interrupts. (parse_common_opt): Accept a FILE argument to --debug.
1997-08-18.Miles Bader
1997-08-18(ftpfs_create):Miles Bader
Use ftpfs_dir_null_lookup instead of ftpfs_dir_lookup.
1997-08-18(ftpfs_dir_null_lookup):Miles Bader
New declaration.
1997-08-18(refresh_dir):Miles Bader
Add PRESERVE_ENTRY parameter; all callers changed. (ftpfs_refresh_node): Record ENOENT entries. (ftpfs_dir_lookup): Handle "" lookups like ".". Set E's name timestamp for noent entries. (ftpfs_dir_null_lookup): New function.
1997-08-18(netfs_attempt_mkfile):Miles Bader
Unlock DIR.
1997-08-12.Miles Bader
1997-08-12(update_entry):Miles Bader
Set E->stat.st_fsid & st_fstype. (ftpfs_next_inode): Variable removed.
1997-08-12(struct ftpfs):Miles Bader
Add FSID & NEXT_INODE fields. (ftpfs_create): Add FSID parameter.
1997-08-12(main):Miles Bader
Supply the FSID argument to ftpfs_create.
1997-08-12(ftpfs_create):Miles Bader
Add FSID parameter. Initialize FSID & NEXT_INODE fields.
1997-08-11.Miles Bader
1997-08-11(sweep):Miles Bader
Don't delete entries that have the NOENT flag set. (refresh_dir): Ensure that there are entries for `.' and `..'.
1997-08-09.Miles Bader
1997-08-09(struct refresh_entry_state):Miles Bader
DIR_PFX & DIR_PFX_LEN fields removed. (ftpfs_dir_lookup, ftpfs_refresh_node): Use ftp_conn_append_name instead of path_append. Don't set dir_pfx fields in RES anymore. (lookup): Grow the hash table when it gets large. (update_old_entry): Don't futz with NAME anymore. (path_append): Macro removed. (update_new_entry): Don't futz with NAME anymore. (struct new_entry_state): DIR_PFX & DIR_PFX_LEN fields removed. (struct dir_fetch_state): Replace PREV_ENTRY by PREV_ENTRY_NEXT_P. (update_ordered_entry): Correctly handle a non-empty list. Only insert E in the ordered entry list if it's not already there. (rehash): Zero the new hash table. (refresh_dir): Don't clear the ordered entry list. Only reset bulk stat detection state if actually doing a bulk stat. Initialize DFS.prev_entry_next_p instead of DFS.prev_entry.
1997-08-09(ftpfs_hooks):Miles Bader
Initialize INTERRUPT_CHECK Field.
1997-08-09(ccache_read):Miles Bader
Check for thread cancelation.
1997-08-07.Miles Bader
1997-08-07(struct ftpfs_dir):Miles Bader
timestamp renamed to stat_timestamp. Add name_timestamp field. (struct ftpfs_params): Remove dirent_timeout and dir_timeout fields. Add name_timeout field. (struct ftpfs_dir_entry): dirent_timestamp renamed to name_timestamp.
1997-08-07(lookup):Miles Bader
Initialize timestamps. (update_ordered_name): New function. (ftpfs_dir_lookup): dirent_timeout parameter renamed to name_timeout and dirent_timestamp field renamed to name_timestamp. (update_entry): Allow ST to be zero. Don't leak memory when updating symlink info. Change return type to void. Remove NO_LOCK parameter. (update_ordered_entry, update_old_entry, update_new_entry): Update calls to update_entry. (refresh_dir): Add UPDATE_STATS parameter, and only fetch names if it's zero. Update new timestamps. (ftpfs_dir_refresh, ftpfs_refresh_node, ftpfs_dir_lookup): Supply UPDATE_STATS argument to refresh_dir.
1997-08-07(netfs_append_args):Miles Bader
Output --debug. (OPT_DIR_TIMEOUT, OPT_DIRENT_TIMEOUT): Macros removed. (common_options, parse_common_opt, netfs_append_args, main): Replace --dir-timeout & --dirent-timeout by --name-timeout. Add --bulk-stat-period and --bulk-stat-threshold options. (DEFAULT_DIR_TIMEOUT, DEFAULT_DIRENT_TIMEOUT): Macros removed. (OPT_NAME_TIMEOUT): New macro. (DEFAULT_NAME_TIMEOUT): New macro.
1997-08-07.Miles Bader
1997-08-07(split_server_name):Miles Bader
Enable password parsing.
1997-08-06(lookup):Miles Bader
Initialize the NODE field.
1997-08-06Initial checkin.Miles Bader
1997-08-06Remove unused mig crap.Miles Bader
1997-08-06Initial checkinMiles Bader