Age | Commit message (Collapse) | Author | |
---|---|---|---|
1996-03-20 | Fix typo. | Michael I. Bushnell | |
1996-03-20 | Doc fixes. | Michael I. Bushnell | |
1996-03-20 | (diskfs_lookup): Renamed to be diskfs_lookup_hard. | Michael I. Bushnell | |
(diskfs_direnter): Renamed to be diskfs_direnter_hard. (diskfs_dirrewrite): Renamed to be diskfs_dirrewrite_hard. (diskfs_dirremove): Renamed to be diskfs_dirremove_hard. (diskfs_lookup, diskfs_direnter, diskfs_dirrewrite, diskfs_dirremove): New functions. | |||
1996-02-15 | (diskfs_nput): It's not valid to touch *NP (by `mutex_unlock | Michael I. Bushnell | |
(&np->lock);') after we have called diskfs_drop_node. So don't do it in that case. | |||
1996-02-08 | (diskfs_nput): Before bumping NP->references (which precedes | Michael I. Bushnell | |
diskfs_try_dropping_softrefs), *lock* diskfs_node_refcnt_lock, not mutant unlock. (diskfs_nrele): Likewise. | |||
1996-02-07 | (diskfs_parse_runtime_options): Make STANDARD_ARGP const. | Miles Bader | |
(diskfs_startup_argp, diskfs_device_startup_argp): Make const. | |||
1996-01-27 | (diskfs_start_protid): Update declaration. | Miles Bader | |
(diskfs_create_protid): New declaration. | |||
1996-01-04 | (diskfs_catch_exception, diskfs_end_catch_exception): Macros removed. | Roland McGrath | |
(diskfs_register_memory_fault_area, diskfs_unregister_memory_fault_area): Decls removed. | |||
1996-01-04 | Use size_t instead of int for amounts in diskfs_node_rdwr prototype. | Roland McGrath | |
1995-12-14 | (diskfs_checkdirmod): Correctly return error code for failure, not 1. | Michael I. Bushnell | |
1995-11-21 | (diskfs_get_options): Bother providing declaration. | Michael I. Bushnell | |
1995-11-02 | (diskfs_startup_diskfs, diskfs_execboot_fsys_startup): Add FLAGS arg. | Miles Bader | |
1995-10-19 | Include <rwlock.h> | Miles Bader | |
(diskfs_fsys_lock): Renamed from diskfs_shutdown_lock. Change to a struct rwlock. (diskfs_readonly_changed, diskfs_reload_global_state, diskfs_node_reload, diskfs_max_user_pager_prot, diskfs_set_readonly, diskfs_remount): New declarations. (diskfs_readonly_changed): New declaration. (disksf_get_filemap): Add prot parameter. (diskfs_main_request_loop): Declaration removed. | |||
1995-10-13 | (diskfs_start_bootstrap): Get rid of ARGV argument. | Miles Bader | |
(diskfs_argv): New declaration. (diskfs_device, diskfs_device_name, diskfs_device_start, diskfs_device_size, diskfs_device_block_size, diskfs_log2_device_block_size, diskfs_log2_device_blocks_per_page, diskfs_device_write_sync, diskfs_device_write_sync, diskfs_device_open, diskfs_console_stdio): New declarations. (diskfs_parse_runtime_options, diskfs_standard_startup_argp): Use argp, not options. Include <argp.h> instead of <options.h>. | |||
1995-10-11 | (diskfs_init_completed): must --> may. | Miles Bader | |
Add necessary includes. | |||
1995-10-07 | (diskfs_host_priv, diskfs_master_device): Variables deleted. | Miles Bader | |
(diskfs_parse_bootargs): Function deleted. (diskfs_init_diskfs): Now returns error_t. (diskfs_get_file_device, diskfs_get_mach_device): New funcs. (diskfs_boot_flags): New variable. (diskfs_bootflags, diskfs_bootflagarg): Variables deleted. | |||
1995-09-13 | (diskfs_lookup): Doc fix. | Michael I. Bushnell | |
1995-06-20 | (diskfs_node_iterate): New (user-provided) function. | Michael I. Bushnell | |
1995-06-14 | (diskfs_get_translator): Specify new calling interface. | Michael I. Bushnell | |
1995-06-14 | (diskfs_start_translator, diskfs_destroy_translator, | Michael I. Bushnell | |
diskfs_sync_translators): Delete functions. (struct node): Replace TRANSLATOR member with new TRANSBOX member. | |||
1995-06-09 | (diskfs_transboot_class): Delete var. | Michael I. Bushnell | |
1995-06-09 | (diskfs_shutdown_lock, diskfs_protid_class, diskfs_transboot_class, | Michael I. Bushnell | |
diskfs_control_class, diskfs_execboot_class, diskfs_initboot_class, diskfs_port_bucket): New variables. (diskfs_pager_users): New function declaration. | |||
1995-06-06 | (diskfs_shutdown_soft_ports): Deleted decl. | Michael I. Bushnell | |
(ports_demuxer): Deleted decl. (diskfs_demuxer): New decl. | |||
1995-05-20 | (diskfs_standard_startup_options): Declare new variable. | Miles Bader | |
(diskfs_set_options): Declare new function. (diskfs_parse_runtime_options): Ditto. Include <options.h> (currently in ../lib). | |||
1995-05-12 | Add declarations of diskfs_set_sync_interval and diskfs_default_sync_interval. | Miles Bader | |
1995-04-28 | (diskfs_nrele, diskfs_nput): We need to hold a real reference around | Michael I. Bushnell | |
the call to diskfs_try_dropping_softrefs, because that's a user-supplied routine that might itself rely on the reference counting system. | |||
1995-03-17 | Back out changes to protid and associated permission checking | Michael I. Bushnell | |
functions. | |||
1995-03-17 | (_diskfs_idcheckdirmod): Remove underscore. | Michael I. Bushnell | |
1995-03-17 | (_diskfs_idcheckdirmod): `cred' -> `id'. | Michael I. Bushnell | |
(diskfs_idhasgid): Likewise. | |||
1995-03-08 | (diskfs_synchronous): New variable. | Michael I. Bushnell | |
1995-03-07 | (struct userid): New type. | Michael I. Bushnell | |
(struct protid): Replace UIDS, GIDS, NUIDS, and NGIDS with ID. (diskfs_isuid): Replace with new function diskfs_idhasuid. (diskfs_groupmember): Replace with new function diskfs_idhasgid. (_diskfs_idisowner, _diskfs_idaccess, _diskfs_idcheckdirmod): New functions. (diskfs_isowner): Check each ID in the chain with _diskfs_idisowner. (diskfs_access): Check each ID in the chain with _diskfs_idaccess. (diskfs_checkdirmod): Check each ID in the chain with _diskfs_idcheckdirmod. | |||
1994-10-07 | entered into RCS | Roland McGrath | |
1994-09-23 | Formerly diskfs.h.~38~ | Michael I. Bushnell | |
1994-09-23 | Formerly diskfs.h.~37~ | Michael I. Bushnell | |
1994-09-23 | Formerly diskfs.h.~36~ | Michael I. Bushnell | |
1994-09-10 | Formerly diskfs.h.~35~ | Roland McGrath | |
1994-09-01 | Formerly diskfs.h.~34~ | Michael I. Bushnell | |
1994-07-22 | Formerly diskfs.h.~33~ | Michael I. Bushnell | |
1994-07-19 | Formerly diskfs.h.~32~ | Michael I. Bushnell | |
1994-07-15 | Formerly diskfs.h.~31~ | Michael I. Bushnell | |
1994-07-14 | Formerly diskfs.h.~30~ | Michael I. Bushnell | |
1994-07-13 | Formerly diskfs.h.~29~ | Michael I. Bushnell | |
1994-06-29 | Formerly diskfs.h.~28~ | Michael I. Bushnell | |
1994-06-16 | Formerly diskfs.h.~27~ | Michael I. Bushnell | |
1994-06-14 | Formerly diskfs.h.~26~ | Michael I. Bushnell | |
1994-06-02 | Initial revision | Michael I. Bushnell | |